| | |
| | | /// 实体:班次 |
| | | /// </summary> |
| | | [Description("Primary:ID")] |
| | | [DisplayName("班次")] |
| | | [Serializable] |
| | | [SugarTable("MES_SHIFT")] |
| | | public class MES_SHIFT : DbEntityWithAuth |
| | |
| | | /// <summary> |
| | | /// 班次编码 |
| | | /// </summary> |
| | | [DisplayName("班次编码")] |
| | | public string SFT_CODE { get; set; } |
| | | /// <summary> |
| | | /// 班次名称 |
| | | /// </summary> |
| | | [DisplayName("班次名称")] |
| | | public string SFT_NAME { get; set; } |
| | | /// <summary> |
| | | /// 班制编码 |
| | | /// </summary> |
| | | [DisplayName("班制编码")] |
| | | public string SFTS_CODE { get; set; } |
| | | /// <summary> |
| | | /// 班次开始时间 |
| | | /// </summary> |
| | | [DisplayName("班次开始时间")] |
| | | public int SFT_BEGIN { get; set; } |
| | | /// <summary> |
| | | /// 班次结束时间 |
| | | /// </summary> |
| | | [DisplayName("班次结束时间")] |
| | | public int SFT_END { get; set; } |
| | | /// <summary> |
| | | /// 是否跨天(Y/N) |
| | | /// </summary> |
| | | [DisplayName("是否跨天(Y/N)")] |
| | | public string IS_ACROSS_DAY { get; set; } |
| | | /// <summary> |
| | | /// 备注 |
| | | /// </summary> |
| | | [DisplayName("备注")] |
| | | public string REMARK { get; set; } |
| | | #endregion |
| | | |