This commit is contained in:
liqionghai
2025-11-18 17:43:12 +08:00
parent 3f9e939d54
commit d758497f93
189 changed files with 16669 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
namespace Gatedge.ScanCode.Models.Dto.ScanRecords
{
/// <summary>
/// 暂存扫描记录列表过滤条件
/// </summary>
public class ScanRecordsPageParam : PageParam
{
/// <summary>
/// 单据表单ID
/// </summary>
public string? BillId { get; set; }
/// <summary>
/// 单据号
/// </summary>
public string? BillNo { get; set; }
/// <summary>
/// 编号
/// </summary>
public string? Number { get; set; }
/// <summary>
/// 条形码
/// </summary>
public string? BarCode { get; set; }
/// <summary>
/// 用户Id
/// </summary>
public string? UserId { get; set; }
/// <summary>
/// 状态
/// </summary>
public string? Status { get; set; }
/// <summary>
/// 提交批次
/// </summary>
public string? SubmitLot { get; set; }
}
}