You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
485 B
21 lines
485 B
4 years ago
|
using System;
|
||
|
using System.ComponentModel;
|
||
|
using CK.SCP.Models.Enums;
|
||
|
|
||
|
namespace CK.SCP.Models.Base
|
||
|
{
|
||
|
public interface ITaskTable : ITable, IDomainSite
|
||
|
{
|
||
|
[Description("任务编号")]
|
||
|
Guid TaskID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// A:Add,R:Read,U:Update,D:Delete
|
||
|
/// </summary>
|
||
|
[Description("命令类型")]
|
||
|
string CommandType { get; set; }
|
||
|
|
||
|
[Description("数据编号")]
|
||
|
Guid DataID { get; set; }
|
||
|
}
|
||
|
}
|