| | |
| | | /// 实体:班次时段 |
| | | /// </summary> |
| | | [Description("Primary:ID")] |
| | | [DisplayName("班次时段")] |
| | | [Serializable] |
| | | [SugarTable("MES_SHIFT_PRD")] |
| | | public class MES_SHIFT_PRD : DbEntityWithAuth |
| | |
| | | /// <summary> |
| | | /// 时段编码 |
| | | /// </summary> |
| | | [DisplayName("时段编码")] |
| | | public string PRD_CODE { get; set; } |
| | | /// <summary> |
| | | /// 时段名称 |
| | | /// </summary> |
| | | [DisplayName("时段名称")] |
| | | public string PRD_NAME { get; set; } |
| | | /// <summary> |
| | | /// 班次编码 |
| | | /// </summary> |
| | | [DisplayName("班次编码")] |
| | | public string SFT_CODE { get; set; } |
| | | /// <summary> |
| | | /// 时段开始时间 |
| | | /// </summary> |
| | | [DisplayName("时段开始时间")] |
| | | public int PRD_BEGIN { get; set; } |
| | | /// <summary> |
| | | /// 时段结束时间 |
| | | /// </summary> |
| | | [DisplayName("时段结束时间")] |
| | | public int PRD_END { get; set; } |
| | | /// <summary> |
| | | /// 时段排序 |
| | | /// </summary> |
| | | [DisplayName("时段排序")] |
| | | public int SEQ { get; set; } |
| | | /// <summary> |
| | | /// 是否跨天(Y/N) |
| | | /// </summary> |
| | | [DisplayName("是否跨天(Y/N)")] |
| | | public string IS_ACROSS { get; set; } |
| | | /// <summary> |
| | | /// 是否休息时段(Y/N) |
| | | /// </summary> |
| | | [DisplayName("是否休息时段(Y/N)")] |
| | | public string IS_REST { get; set; } |
| | | /// <summary> |
| | | /// 备注 |
| | | /// </summary> |
| | | [DisplayName("备注")] |
| | | public string REMARK { get; set; } |
| | | #endregion |
| | | |