出入库,后道标签打印调整(后道标签打印有问题)

This commit is contained in:
2025-08-28 10:10:15 +08:00
parent 781a519803
commit 0350a43055
21 changed files with 1350 additions and 420 deletions

View File

@@ -0,0 +1,26 @@
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.wms.Dto
{
/// <summary>
/// PDA 出库单列表查询对象
/// </summary>
public class WmPDAOutOrderPageQueryDto : PagerInfo
{
// 出库单状态1-出库中 2-出库完成 3-弃用)
public string Type { get; set; }
// 出库单号
public string ShipmentNum { get; set; }
}
/// <summary>
/// PDA 出库计划列表查询对象
/// </summary>
public class WmPDAOutOrderPlanPageQueryDto : PagerInfo
{
// 出库单号
public string ShipmentNum { get; set; }
// 物料号
public string MaterialCode { get; set; }
}
}