using System; using Newtonsoft.Json; namespace Dto { /// /// 调拨物资入库 /// public class TransferInboundCoordinator { /// /// 物资数量(单位:台) /// [JsonProperty("materialQuantity")] public int MaterialQuantity { get; set; } /// /// 物资名称(示例:10kV三相隔离开关) /// [JsonProperty("materialName")] public string MaterialName { get; set; } /// /// 物料编码(示例:500002150) /// [JsonProperty("materialCode")] public string MaterialCode { get; set; } /// /// 物料描述(示例:10kV三相隔离开关,630A,20kA,手动双柱立开式,不接地) /// [JsonProperty("materialDescription")] public string MaterialDescription { get; set; } /// /// 暂存区域(示例:入库待检区) /// [JsonProperty("temporaryStorageArea")] public string TemporaryStorageArea { get; set; } /// /// 调拨单编号(格式:由供应商提供) /// [JsonProperty("transferOrderNumber")] public string TransferOrderNumber { get; set; } /// /// 存放区域(示例:货架区) /// [JsonProperty("storageArea")] public string StorageArea { get; set; } /// /// 仓位编号(格式:C01-010101) /// [JsonProperty("binNumber")] public string BinNumber { get; set; } /// /// 工厂代码(示例:01M3) /// [JsonProperty("plantCode")] public string PlantCode { get; set; } /// /// 物资批次号(示例:2023M0023A) /// [JsonProperty("batchNumber")] public string BatchNumber { get; set; } /// /// 库存地点(示例:国网江苏省电力泰州中心库(HMAZ)) /// [JsonProperty("inventoryLocation")] public string InventoryLocation { get; set; } /// /// 库管员(示例:张三) /// [JsonProperty("warehouseKeeper")] public string WarehouseKeeper { get; set; } /// /// 仓库主管(示例:李四) /// [JsonProperty("warehouseSupervisor")] public string WarehouseSupervisor { get; set; } /// /// 业务日期(ISO 8601格式) /// [JsonProperty("date")] public DateTime Date { get; set; } } }