| | |
| | | /// 实体:不良原因 |
| | | /// </summary> |
| | | [Description("Primary:ID")] |
| | | [DisplayName("不良原因")] |
| | | [Serializable] |
| | | [SugarTable("BAS_REASON")] |
| | | public class BAS_REASON : DbEntityWithAuth |
| | |
| | | /// <summary> |
| | | /// 不良原因编码 |
| | | /// </summary> |
| | | [DisplayName("不良原因编码")] |
| | | public string RSN_CODE { get; set; } |
| | | /// <summary> |
| | | /// 不良原因名称 |
| | | /// </summary> |
| | | [DisplayName("不良原因名称")] |
| | | public string RSN_NAME { get; set; } |
| | | /// <summary> |
| | | /// 不良原因组编码 |
| | | /// </summary> |
| | | [DisplayName("不良原因组编码")] |
| | | public string RSNG_CODE { get; set; } |
| | | /// <summary> |
| | | /// 是否必须更换零件(Y/N) |
| | | /// </summary> |
| | | [DisplayName("是否必须更换零件(Y/N)")] |
| | | public string NEED_REPLACE { get; set; } |
| | | /// <summary> |
| | | /// 备注 |
| | | /// </summary> |
| | | [DisplayName("备注")] |
| | | public string REMARK { get; set; } |
| | | #endregion |
| | | |