u_task_log.cs 948 B

123456789101112131415161718192021222324252627282930
  1. using LJLib.DAL.SQL;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace JLHHJSvr.Com.Model
  8. {
  9. [PK(new[] { "taskid" })]
  10. public sealed class u_task_log
  11. {
  12. public int? taskid { get; set; }
  13. public string task_type { get; set; }
  14. public int? run_mode { get; set; }
  15. public DateTime? schedule_time { get; set; }
  16. public int? status { get; set; }
  17. public int? total_count { get; set; }
  18. public int? success_count { get; set; }
  19. public int? fail_count { get; set; }
  20. public int? skip_count { get; set; }
  21. public string request_json { get; set; }
  22. public string log_msg { get; set; }
  23. public string create_emp { get; set; }
  24. public DateTime? create_time { get; set; }
  25. public DateTime? start_time { get; set; }
  26. public DateTime? end_time { get; set; }
  27. }
  28. }