using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace LYFZ.WeixinServiceDate.Model { public class Model_DZKJ_TaskExecutionStatistics { public Model_DZKJ_TaskExecutionStatistics() { } long _ID; /// /// ID /// public long ID { get { return _ID; } set { _ID = value; } } string _Account; /// /// 帐号 /// public string Account { get { return _Account; } set { _Account = value; } } string _ExecutionCount; /// /// 执行次数 /// public string ExecutionCount { get { return _ExecutionCount; } set { _ExecutionCount = value; } } string _GroupType; /// /// 分组类型 /// public string GroupType { get { return _GroupType; } set { _GroupType = value; } } string _DayKey; /// /// 唯一主键 /// public string DayKey { get { return _DayKey; } set { _DayKey = value; } } DateTime _ExecutionTime = DateTime.Now; /// /// 执行时间 /// public DateTime ExecutionTime { get { return _ExecutionTime; } set { _ExecutionTime = value; } } } }