| | |
| | | |
| | | /* |
| | | * @author : 刘文奇 |
| | | * @date : 2024/4/23下午4:08:49 |
| | | * @desc : 物料客户关联表 |
| | | * @date : 2024/4/23下午4:14:52 |
| | | * @desc : 替代品管理 |
| | | */ |
| | | namespace Admin.NET.Core |
| | | { |
| | | /// <summary> |
| | | /// 物料客户关联表 |
| | | /// 替代品管理 |
| | | /// </summary> |
| | | [Table("wms_material_customer")] |
| | | [Comment("物料客户关联表")] |
| | | public class WmsMaterialCustomer : DEntityBase |
| | | [Table("wms_substitute_good")] |
| | | [Comment("替代品管理")] |
| | | public class WmsSubstituteGood : DEntityBase |
| | | { |
| | | |
| | | |
| | | /// <summary> |
| | | /// 物料ID |
| | | /// 替代编号 |
| | | /// </summary> |
| | | [Comment("物料ID")] |
| | | [Comment("替代编号")] |
| | | [Required] |
| | | |
| | | public long MaterialId { get; set; } |
| | | [MaxLength(50)] |
| | | public string SubstituteCode { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 客户ID |
| | | /// 替代品物料编号 |
| | | /// </summary> |
| | | [Comment("客户ID")] |
| | | [Required] |
| | | |
| | | public long CustId { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 客户编号 |
| | | /// </summary> |
| | | [Comment("客户编号")] |
| | | [Comment("替代品物料编号")] |
| | | [Required] |
| | | [MaxLength(50)] |
| | | public string CustCode { get; set; } |
| | | public string SubstituteMaterialCode { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 客户英文名称 |
| | | /// 替代品物料名称 |
| | | /// </summary> |
| | | [Comment("客户英文名称")] |
| | | [MaxLength(255)] |
| | | public string CustEnglishName { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 客户中文名称 |
| | | /// </summary> |
| | | [Comment("客户中文名称")] |
| | | [Comment("替代品物料名称")] |
| | | [Required] |
| | | [MaxLength(255)] |
| | | public string CustChinaName { get; set; } |
| | | [MaxLength(50)] |
| | | public string SubstituteMaterialName { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 替代次序 |
| | | /// </summary> |
| | | [Comment("替代次序")] |
| | | [Required] |
| | | |
| | | public int SubstituteIndex { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 版本号 |
| | | /// </summary> |
| | | [Comment("版本号")] |
| | | [MaxLength(50)] |
| | | public string VersionNO { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 是否禁用 |
| | | /// </summary> |
| | | [Comment("是否禁用")] |
| | | [Required] |
| | | |
| | | public bool IsDisabled { get; set; } |
| | | |
| | | |
| | | |