- namespace Admin.NET.Plugin.AiDOP.Supply;
- /// <summary>
- /// 交货单异常记录分页查询
- /// </summary>
- public class DeliveryExceptionListInput
- {
- public int Page { get; set; } = 1;
- public int PageSize { get; set; } = 20;
- /// <summary>执行时间(模糊匹配)</summary>
- public string? OptTime { get; set; }
- /// <summary>物料编码(精确匹配)</summary>
- public string? ItemNum { get; set; }
- }
|