wms:批量货物查看
This commit is contained in:
58
ZR.Model/MES/wms/Dto/WmGoods_nodeDto.cs
Normal file
58
ZR.Model/MES/wms/Dto/WmGoods_nodeDto.cs
Normal file
@@ -0,0 +1,58 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ZR.Model.MES.wms.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 当前仓库货物节点表
|
||||
/// </summary>
|
||||
public class WmGoods_nodeDto
|
||||
{
|
||||
|
||||
public string Id { get; set; }
|
||||
|
||||
|
||||
public string PackageCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 父节点 就是短批次号
|
||||
/// </summary>
|
||||
public string PackageCodeClient_short_parent { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 子节点 (主键)
|
||||
/// </summary>
|
||||
public string PackageCodeClient_son { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 箱数
|
||||
/// </summary>
|
||||
public int Pack_num { get; set; }
|
||||
|
||||
public string PackageCodeOriginal { get; set; }
|
||||
|
||||
|
||||
public string LocationCode { get; set; }
|
||||
|
||||
public string Partnumber { get; set; }
|
||||
|
||||
public int? GoodsNumLogic { get; set; }
|
||||
|
||||
public int? GoodsNumAction { get; set; }
|
||||
|
||||
public DateTime? EntryWarehouseTime { get; set; }
|
||||
|
||||
public string Remark { get; set; }
|
||||
|
||||
public string UpdatedBy { get; set; }
|
||||
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
public DateTime? CreatedTime { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user