using System; namespace NetCore.Model.qw { public class hg_excute_log { public string pici { get; set; } public string corpid { get; set; } public string name { get; set; } public string tablename { get; set; } public int? seq { get; set; } public DateTime? starttime { get; set; } public DateTime? endtime { get; set; } public string message { get; set; } public int status { get; set; } /// /// 执行花费秒数 /// public int exscend { get; set; } } public class hg_excete_log_crm { public int id { get; set; } public string type { get; set; } public string tablename { get; set; } /// /// 执行开始时间 /// public DateTime? starttime { get; set; } /// /// 执行结束时间 /// public DateTime? endtime { get; set; } /// /// 执行用时/秒 /// public int exscend { get; set; } /// /// 信息 /// public string message { get; set; } /// /// 状态 200执行成功 210执行成功但没数据 500出现错误 /// public int status { get; set; } } public class hg_excete_log_wx { public int id { get; set; } public string type { get; set; } public string tablename { get; set; } /// /// 执行开始时间 /// public DateTime? starttime { get; set; } /// /// 执行结束时间 /// public DateTime? endtime { get; set; } /// /// 执行用时/秒 /// public int exscend { get; set; } /// /// 信息 /// public string message { get; set; } /// /// 状态 200执行成功 210执行成功但没数据 500出现错误 /// public int status { get; set; } } }