| | |
| | | /// 实体:产品架构 |
| | | /// </summary> |
| | | [Description("Primary:ID")] |
| | | [DisplayName("产品架构")] |
| | | [Serializable] |
| | | [SugarTable("BAS_PROD_ARCH")] |
| | | public class BAS_PROD_ARCH : DbEntityWithAuth |
| | |
| | | |
| | | #region 公共属性 |
| | | /// <summary> |
| | | /// 产品架构代码 |
| | | /// 产品架构编码 |
| | | /// </summary> |
| | | [DisplayName("产品架构编码")] |
| | | public string ARCH_CODE { get; set; } |
| | | /// <summary> |
| | | /// 产品架构名称 |
| | | /// </summary> |
| | | [DisplayName("产品架构名称")] |
| | | public string ARCH_NAME { get; set; } |
| | | /// <summary> |
| | | /// 产品架构简称 |
| | | /// </summary> |
| | | [DisplayName("产品架构简称")] |
| | | public string SHORT_NAME { get; set; } |
| | | /// <summary> |
| | | /// 产品架构类型(机型机种) |
| | | /// 产品架构类型 |
| | | /// </summary> |
| | | [DisplayName("产品架构类型")] |
| | | public string ARCH_TYPE { get; set; } |
| | | /// <summary> |
| | | /// 父阶产品架构 |
| | | /// </summary> |
| | | [DisplayName("父阶产品架构")] |
| | | public string PARENT { get; set; } |
| | | /// <summary> |
| | | /// 备注 |
| | | /// </summary> |
| | | [DisplayName("备注")] |
| | | public string REMARK { get; set; } |
| | | #endregion |
| | | |