| | |
| | | |
| | | /* |
| | | * @author : 刘文奇 |
| | | * @date : 2024/4/23下午6:30:44 |
| | | * @date : 2024/4/24下午4:54:43 |
| | | * @desc : 库位表 |
| | | */ |
| | | namespace Admin.NET.Core |
| | |
| | | [Required] |
| | | |
| | | public PlaceStatusEnum PlaceStatus { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 是否堆垛机库位 |
| | | /// </summary> |
| | | [Comment("是否堆垛机库位")] |
| | | |
| | | public bool? IsSrmPlace { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 堆垛机库位号 |
| | | /// </summary> |
| | | [Comment("堆垛机库位号")] |
| | | [MaxLength(50)] |
| | | public string SrmPlaceNo { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 是否RGV库位 |
| | | /// </summary> |
| | | [Comment("是否RGV库位")] |
| | | |
| | | public bool? IsRgvPlace { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// RGV库位号 |
| | | /// </summary> |
| | | [Comment("RGV库位号")] |
| | | [MaxLength(50)] |
| | | public string RgvPlaceNo { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 是否AGV库位 |
| | | /// </summary> |
| | | [Comment("是否AGV库位")] |
| | | |
| | | public bool? IsAgvPlace { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// AGV库位号 |
| | | /// </summary> |
| | | [Comment("AGV库位号")] |
| | | [MaxLength(50)] |
| | | public string AgvPlaceNo { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 是否输送线库位 |
| | | /// </summary> |
| | | [Comment("是否输送线库位")] |
| | | |
| | | public bool? IsTransPlace { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 输送线库位号 |
| | | /// </summary> |
| | | [Comment("输送线库位号")] |
| | | [MaxLength(50)] |
| | | public string TransPlaceNo { get; set; } |
| | | |
| | | |
| | | /// <summary> |