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