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

51 lines
1.9 KiB
C#
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using WX.CRM.Model.Entity;
namespace WX.CRM.Model
{
[Table("UPDEV.MSGTOOL_TASK")]
public class MsgToolTask
{
[Key]
public decimal PKID { get; set; }
public decimal PLANID { 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; } //计划执行时间,小时分钟秒(例8:01:59)
public int? CYCLENUMBER { get; set; } //循环次数
public DateTime? DUEDATE { get; set; } //截至时间
public int STATUS { get; set; } //任务状态180草稿     220已分发  70已取消  80已过期
public DateTime CTIME { get; set; }
public decimal CREATOR { get; set; } //任务发布人存eid
public decimal RECEIVERID { get; set; } //任务执行人存eid
public int? ISNOTICE { get; set; } //是否被通知 1:已通知 0:未通知(分发后马上就进行通知)
public string REMARK { get; set; }
public int TASKTYPE { get; set; }
public virtual MsgToolPlan MsgToolPlan { get; set; }
public virtual List<MsgToolTaskCmd> MsgToolTaskCmds { get; set; }
}
}