Files
Gatedge.NewOrientLandMark.BOS/Gatedge.ScanCode/Models/Dto/BarRecord/BarRecordPageParam.cs
liqionghai d758497f93 1
2025-11-18 17:43:12 +08:00

24 lines
534 B
C#

namespace Gatedge.ScanCode.Models.Dto.BarRecord
{
/// <summary>
/// 暂存扫描记录列表过滤条件
/// </summary>
public class BarRecordPageParam : PageParam
{
/// <summary>
/// 用户Id
/// </summary>
public string? UserId { get; set; }
/// <summary>
/// 状态
/// </summary>
public string? Status { get; set; }
/// <summary>
/// 是否提交过
/// </summary>
public bool? IsSubmit { get; set; }
}
}