using ATS.NonCustodial.Shared.Common.Dtos;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ATS.NonCustodial.Application.Contracts.Interfaces.Business.ViolationStatistics.Input
{
public class NotClockedInput: PageRequestBaseInput
{
///
/// 案件Id
///
public long? CaseId { get; set; }
///
/// 结束时间
///
public DateTime? EndCreatedTime { get; set; }
///
/// 开始时间
///
public DateTime? StartCreatedTime { get; set; }
///
/// 案件进度
///
public int? CaseProgress { get; set; }
///
/// 被监管人姓名
///
public string? SupervisedPersonName { get; set; }
}
}