sys_shift_invalid_time.cs 996 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using Business.Model;
  2. using Microsoft.EntityFrameworkCore;
  3. using System.ComponentModel;
  4. using System.ComponentModel.DataAnnotations;
  5. namespace Bussiness.Model.SystemData
  6. {
  7. /// <summary>
  8. /// 班次无效时间表
  9. /// </summary>
  10. [Comment("班次无效时间表")]
  11. public class sys_shift_invalid_time:BaseEntity
  12. {
  13. ///// <summary>
  14. ///// 主键id
  15. ///// </summary>
  16. //[Key]
  17. //[Comment("数据状态标识 1启用 0停用")]
  18. //public long invalid_time_id { get; set; }
  19. /// <summary>
  20. /// 班次id
  21. /// </summary>
  22. [Comment("班次id")]
  23. public long? schedule_id { get; set; }
  24. /// <summary>
  25. /// 开始时间
  26. /// </summary>
  27. [Comment("开始时间")]
  28. public DateTime start_time { get; set; }
  29. /// <summary>
  30. /// 结束时间
  31. /// </summary>
  32. [Comment("结束时间")]
  33. public DateTime end_time { get; set; }
  34. }
  35. }