| | |
| | | |
| | | /* |
| | | * @author : 刘文奇 |
| | | * @date : 2024/4/23下午1:44:59 |
| | | * @date : 2024/4/23下午4:08:49 |
| | | * @desc : 物料客户关联表 |
| | | */ |
| | | namespace Admin.NET.Core |
| | |
| | | [Comment("物料编号")] |
| | | [Required] |
| | | [MaxLength(50)] |
| | | public string MaterialNo { get; set; } |
| | | public string MaterialCode { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 客户名称 |
| | | /// 客户英文名称 |
| | | /// </summary> |
| | | [Comment("客户名称")] |
| | | [Comment("客户英文名称")] |
| | | [MaxLength(255)] |
| | | public string CustEnglishName { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 客户中文名称 |
| | | /// </summary> |
| | | [Comment("客户中文名称")] |
| | | [Required] |
| | | [MaxLength(50)] |
| | | public string CustName { get; set; } |
| | | [MaxLength(255)] |
| | | public string CustChinaName { get; set; } |
| | | |
| | | |
| | | |