| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using Business.Model;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- namespace Bussiness.Model.Tech
- {
- /// <summary>
- /// 工作日历明细表
- /// </summary>
- public class work_calendar_list : BaseEntity
- {
- /// <summary>
- /// 工作日历明细主键
- /// </summary>
- [Key]
- [Description("工作日历明细主键")]
- public long work_cal_list_id { get; set; }
- /// <summary>
- /// 工作日历id
- /// </summary>
- [Required]
- [Description("工作日历id")]
- public long work_calendar_id { get; set; }
- /// <summary>
- /// 日期
- /// </summary>
- [Description("日期")]
- public DateTime? work_cal_list_date { get; set; }
- /// <summary>
- /// 类型:1-工作日;0-休息日
- /// </summary>
- [Description("类型:1-工作日;0-休息日")]
- public int? work_cal_list_type { get; set; }
- /// <summary>
- /// 工作时长(分钟)
- /// </summary>
- [Description("工作时长(分钟)")]
- public int? work_cal_list_times { get; set; }
- /// <summary>
- /// 班次数
- /// </summary>
- [Description("班次数")]
- public int? work_cal_list_num { get; set; }
- }
- }
|