新增字段

master
LAPTOP-NLSJV9RB\91647 2 years ago
parent 1bfa89757c
commit 198f68cdc0

@ -34,6 +34,12 @@ namespace Khd.Core.Domain.Models
[Column("wms_order_detail_id")] [Column("wms_order_detail_id")]
public long? wmsOrderDetailId { get; set; } public long? wmsOrderDetailId { get; set; }
/// <summary>
/// 任务id
/// </summary>
[Column("task_id")]
public long? taskId { get; set; }
/// <summary> /// <summary>
/// 单据类型(1 入库 2 出库 3 移库) /// 单据类型(1 入库 2 出库 3 移库)
/// </summary> /// </summary>
@ -45,17 +51,29 @@ namespace Khd.Core.Domain.Models
/// </summary> /// </summary>
[Column("material_id")] [Column("material_id")]
public long? materialId { get; set; } public long? materialId { get; set; }
/// <summary> /// <summary>
/// 仓库id /// 仓库id
/// </summary> /// </summary>
[Column("warehouse_id")] [Column("warehouse_id")]
public long? warehouseId { get; set; } public long? warehouseId { get; set; }
/// <summary>
/// 料箱编号
/// </summary>
[Column("box_no")]
public string boxNo { get; set; }
/// <summary>
/// 料箱状态
/// </summary>
[Column("box_status")]
public int? boxStatus { get; set; }
/// <summary> /// <summary>
/// 所属楼层 /// 所属楼层
/// </summary> /// </summary>
[Column("floor_num")] [Column("floor_num")]
public int? floorNum { get; set; } public int? floorNum { get; set; }
/// <summary> /// <summary>

@ -27,16 +27,17 @@ namespace Khd.Core.Domain.Models
/// </summary> /// </summary>
[Column("warehouse_id")] [Column("warehouse_id")]
public long warehouseId { get; set; } public long warehouseId { get; set; }
/// <summary> /// <summary>
/// agv的点位编码 /// agv的点位编码
/// </summary> /// </summary>
[Column("agv_position_code")] [Column("agv_position_code")]
public string agvPositionCode { get; set; } public string agvPositionCode { get; set; }
/// <summary> /// <summary>
/// 库位编码 /// 库位编码
/// </summary> /// </summary>
[Column("location_code")] [Column("location_code")]
public string locationCode { get; set; } public string locationCode { get; set; }
/// <summary> /// <summary>
@ -75,6 +76,12 @@ namespace Khd.Core.Domain.Models
[Column("manual_flag")] [Column("manual_flag")]
public string manualFlag { get; set; } public string manualFlag { get; set; }
/// <summary>
/// 返库标识1是0否;用来标识是否是拆分后返库的库位
/// </summary>
[Column("return_flag")]
public string returnFlag { get; set; }
/// <summary> /// <summary>
/// 数量限制 /// 数量限制
/// </summary> /// </summary>
@ -177,30 +184,6 @@ namespace Khd.Core.Domain.Models
[Column("location_scrap_type")] [Column("location_scrap_type")]
public string locationScrapType { get; set; } public string locationScrapType { get; set; }
/// <summary>
/// 库位属性
/// </summary>
[Column("location_attr")]
public string locationAttr { get; set; }
/// <summary>
/// 周转需求
/// </summary>
[Column("turn_demand")]
public string turnDemand { get; set; }
/// <summary>
/// 校验码
/// </summary>
[Column("check_code")]
public string checkCode { get; set; }
/// <summary>
/// 工作区
/// </summary>
[Column("work_area")]
public string workArea { get; set; }
/// <summary> /// <summary>
/// 体积限制 /// 体积限制
/// </summary> /// </summary>
@ -213,18 +196,6 @@ namespace Khd.Core.Domain.Models
[Column("weight_limit")] [Column("weight_limit")]
public decimal? weightLimit { get; set; } public decimal? weightLimit { get; set; }
/// <summary>
/// 箱数限制
/// </summary>
[Column("box_limit")]
public int? boxLimit { get; set; }
/// <summary>
/// 托盘限制
/// </summary>
[Column("pallet_limit")]
public int? palletLimit { get; set; }
/// <summary> /// <summary>
/// 长度 /// 长度
/// </summary> /// </summary>

Loading…
Cancel
Save