| 123456789101112131415161718192021222324252627282930 |
- using LJLib.DAL.SQL;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace JLHHJSvr.Com.Model
- {
- [PK(new[] { "taskid" })]
- public sealed class u_task_log
- {
- public int? taskid { get; set; }
- public string task_type { get; set; }
- public int? run_mode { get; set; }
- public DateTime? schedule_time { get; set; }
- public int? status { get; set; }
- public int? total_count { get; set; }
- public int? success_count { get; set; }
- public int? fail_count { get; set; }
- public int? skip_count { get; set; }
- public string request_json { get; set; }
- public string log_msg { get; set; }
- public string create_emp { get; set; }
- public DateTime? create_time { get; set; }
- public DateTime? start_time { get; set; }
- public DateTime? end_time { get; set; }
- }
- }
|