仓库模块_出库货物记录:init
This commit is contained in:
@@ -13,7 +13,7 @@ namespace ZR.Model.MES.wms.Dto
|
||||
/// </summary>
|
||||
public string originalCode { get; set; }
|
||||
/// <summary>
|
||||
/// 批次号
|
||||
/// 批次号(工单号+箱子号)
|
||||
/// </summary>
|
||||
public string PatchCode { get; set; }
|
||||
/// <summary>
|
||||
|
||||
58
ZR.Model/MES/wms/Dto/WmGoodsOutProductionDto.cs
Normal file
58
ZR.Model/MES/wms/Dto/WmGoodsOutProductionDto.cs
Normal file
@@ -0,0 +1,58 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace ZR.Model.MES.wms.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 出库货物记录表查询对象
|
||||
/// </summary>
|
||||
public class WmGoodsOutProductionQueryDto : PagerInfo
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 出库货物记录表输入输出对象
|
||||
/// </summary>
|
||||
public class WmGoodsOutProductionDto
|
||||
{
|
||||
[Required(ErrorMessage = "雪花id不能为空")]
|
||||
public string Id { get; set; }
|
||||
|
||||
public string FkNowProductionId { get; set; }
|
||||
|
||||
public string FkOutOrderId { get; set; }
|
||||
|
||||
[Required(ErrorMessage = "箱子编号(MES)不能为空")]
|
||||
public string PackageCode { get; set; }
|
||||
|
||||
[Required(ErrorMessage = "箱子编号(客户)不能为空")]
|
||||
public string PackageCodeClient { get; set; }
|
||||
|
||||
public string PackageCodeOriginal { get; set; }
|
||||
|
||||
[Required(ErrorMessage = "库位编号不能为空")]
|
||||
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 DateTime? OutTime { 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; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -52,7 +52,7 @@ namespace ZR.Model.MES.wms.Dto
|
||||
/// 带库存记录的物料库存表
|
||||
/// </summary>
|
||||
public class WmMaterialQuery_stockQuantityDto : WmMaterialQueryDto
|
||||
{
|
||||
{
|
||||
/// <summary>
|
||||
/// 库存数量
|
||||
/// </summary>
|
||||
@@ -61,9 +61,38 @@ namespace ZR.Model.MES.wms.Dto
|
||||
/// <summary>
|
||||
/// 需要出货数量
|
||||
/// </summary>
|
||||
public int requireOutNum { get; set; }
|
||||
public int requireOutNum { get; set; }
|
||||
|
||||
}
|
||||
/// <summary>
|
||||
/// 出货单中物料信息打印
|
||||
/// </summary>
|
||||
public class WmMaterialQuery_print
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 物料号
|
||||
/// </summary>
|
||||
public string Partnumber { get; set; }
|
||||
/// <summary>
|
||||
/// 产品名称
|
||||
/// </summary>
|
||||
public string ProductName { get; set; }
|
||||
/// <summary>
|
||||
/// 需求数量
|
||||
/// </summary>
|
||||
public int RequireOutNum { get; set; }
|
||||
|
||||
//现有箱数
|
||||
public int PackageNum { get; set; }
|
||||
|
||||
//现有零件数
|
||||
public int ItemNum { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 带需要出货数量的物料库存表
|
||||
@@ -85,7 +114,7 @@ namespace ZR.Model.MES.wms.Dto
|
||||
/// </summary>
|
||||
public class WmMaterialDto
|
||||
{
|
||||
|
||||
|
||||
public string Id { get; set; }
|
||||
|
||||
public string Partnumber { get; set; }
|
||||
|
||||
@@ -66,6 +66,8 @@ namespace ZR.Model.MES.wms.Dto
|
||||
//带出货数量的物料表
|
||||
public List<WmMaterialQuery_stockQuantityDto2> MaterialList { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user