using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model { [Table("UPDEV.MSGTOOL_TASK_CMD")] public class MsgToolTaskCmd { [Key] public decimal PKID { get; set; } public decimal PLANID { get; set; } public decimal TASKID { get; set; } [StringLength(4000)] public string JSONDATA { get; set; } public DateTime? PLANEXETIME { get; set; } public DateTime? DUEDATE { get; set; } public DateTime? STARTTIME { get; set; } public DateTime? ENDTIME { get; set; } public int SENDNUM { get; set; } public int? SUCCEEDNUM { get; set; } public int? FAILNUM { get; set; } public int STATUS { get; set; } [StringLength(200)] public string MEMO { get; set; } public DateTime CTIME { get; set; } public int ISNOTICE { get; set; } public decimal? TIMELENGTH { get; set; } [StringLength(50)] public string CORPID { get; set; } [StringLength(50)] public string CORPNAME { get; set; } [StringLength(100)] public string KFUSERID { get; set; } [StringLength(100)] public string KFNICKNAME { get; set; } public virtual MsgToolTask MsgToolTask { get; set; } } }