TG.WXCRM.V4/Model/Entity/MsgToolPlan.cs

49 lines
1.6 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.MSGTOOL_PLAN")]
public class MsgToolPlan
{
public MsgToolPlan()
{
MsgToolTasks = new List<MsgToolTask>();
MsgToolPlanReceives = new List<MsgToolPlanReceive>();
}
[Key]
public decimal PKID { get; set; }
[StringLength(200)]
public string PLANNAME { get; set; }
public decimal GROUPID { get; set; }
[StringLength(200)]
public string GROUPNAME { get; set; }
[StringLength(500)]
public string GROUPMEMO { get; set; }
[StringLength(200)]
public string CORPIDS { get; set; }
[StringLength(4000)]
public string JSONDATA { get; set; }
[StringLength(20)]
public string SENDTYPE { get; set; }
public DateTime? PLANEXETIME { get; set; }
[StringLength(200)]
public string PLANEXECYCLE { get; set; }
[StringLength(20)]
public string PLANEXEHOUR { get; set; }
public DateTime? DUEDATE { get; set; }
public int STATUS { get; set; }
public DateTime CTIME { get; set; }
public decimal CREATOR { get; set; }
public string REMARK { get; set; }
public DateTime? SENDTIME { get; set; }
public virtual List<MsgToolTask> MsgToolTasks { get; set; }
public virtual List<MsgToolPlanReceive> MsgToolPlanReceives { get; set; }
}
}