| | |
| | | |
| | | /* |
| | | * @author : 刘文奇 |
| | | * @date : 2024/4/23下午5:20:46 |
| | | * @date : 2024/4/23下午6:31:24 |
| | | * @desc : 库区表 |
| | | */ |
| | | namespace Admin.NET.Core |
| | |
| | | |
| | | |
| | | /// <summary> |
| | | /// ERP代码 |
| | | /// ERP库存地 |
| | | /// </summary> |
| | | [Comment("ERP代码")] |
| | | [Comment("ERP库存地")] |
| | | [Required] |
| | | [MaxLength(50)] |
| | | public string ErpCode { get; set; } |
| | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 零件级管控 |
| | | /// </summary> |
| | | [Comment("零件级管控")] |
| | | [Required] |
| | | |
| | | public bool IsBarcodeLevelControl { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 检验先进先出 |
| | | /// </summary> |
| | | [Comment("检验先进先出")] |
| | | [Required] |
| | | |
| | | public bool IsFIFO { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 零件级管控 |
| | | /// </summary> |
| | | [Comment("零件级管控")] |
| | | [Required] |
| | | |
| | | public bool IsPartLevelControl { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 允许混淆 |
| | | /// </summary> |
| | | [Comment("允许混淆")] |
| | | [Required] |
| | | |
| | | public bool IsAllowConfusion { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 允许负库存 |
| | | /// </summary> |
| | | [Comment("允许负库存")] |
| | | [Required] |
| | | |
| | | public bool IsAllowNegativeInventory { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 是否虚拟 |
| | | /// </summary> |
| | | [Comment("是否虚拟")] |
| | |
| | | public bool IsVirtually { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 是否禁用 |
| | | /// </summary> |
| | | [Comment("是否禁用")] |
| | | [Required] |
| | | |
| | | public bool IsDisabled { get; set; } |
| | | |
| | | |
| | | |
| | | |
| | | |