shgx_tz_mom/ZR.Model/MES/wms/Dto/WmGoodsOutProductionDto.cs

120 lines
2.9 KiB
C#
Raw Normal View History

2024-03-22 08:54:11 +08:00
namespace ZR.Model.MES.wms.Dto
{
/// <summary>
/// 出库货物记录表查询对象
/// </summary>
2024-06-07 11:04:26 +08:00
public class WmGoodsOutProductionQueryDto : PagerInfo
2024-03-22 08:54:11 +08:00
{
2024-06-07 11:04:26 +08:00
2024-03-23 14:31:50 +08:00
public string Id { get; set; }
public string FkNowProductionId { get; set; }
public string FkOutOrderId { get; set; }
public string PackageCode { get; set; }
2024-06-07 11:04:26 +08:00
2024-03-23 14:31:50 +08:00
public string PackageCodeClient { get; set; }
public string PackageCodeOriginal { get; set; }
public string LocationCode { get; set; }
public string Partnumber { get; set; }
2024-03-26 15:21:21 +08:00
public string Description { get; set; }
2024-03-23 14:31:50 +08:00
public int? GoodsNumLogic { get; set; }
public int? GoodsNumAction { get; set; }
public DateTime? EntryWarehouseTime { get; set; }
public DateTime? OutTime { get; set; }
public DateTime? OutTimeStart { get; set; }
public DateTime? OutTimeEnd { get; set; }
2024-03-23 14:31:50 +08:00
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; }
2024-03-22 08:54:11 +08:00
}
/// <summary>
/// 出库货物记录表输入输出对象
/// </summary>
public class WmGoodsOutProductionDto
{
2024-06-07 11:04:26 +08:00
2024-03-22 08:54:11 +08:00
public string Id { get; set; }
public string FkNowProductionId { get; set; }
public string FkOutOrderId { get; set; }
2024-06-07 11:04:26 +08:00
2024-03-22 08:54:11 +08:00
public string PackageCode { get; set; }
2024-06-07 11:04:26 +08:00
2024-03-22 08:54:11 +08:00
public string PackageCodeClient { get; set; }
public string PackageCodeOriginal { get; set; }
2024-06-07 11:04:26 +08:00
2024-03-22 08:54:11 +08:00
public string LocationCode { get; set; }
public string Partnumber { get; set; }
2024-03-26 15:21:21 +08:00
public string Description { get; set; }
2024-03-22 08:54:11 +08:00
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; }
2024-04-23 18:42:44 +08:00
}
/// <summary>
/// 批次出库
/// </summary>
public class WmBatchGoodsOutProductionDto
{
public List<string> Ids { get; set; }
public string FkOutOrderId { get; set; } = "无出库单";
public string PackageCodeClient { get; set; } = string.Empty;
public string Partnumber { get; set; }
/// <summary>
/// 1-传ids全部出库 2-按批次号全部出库
/// </summary>
public int Type { get; set; }
2024-06-28 08:37:21 +08:00
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
2024-03-22 08:54:11 +08:00
}
}