You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
942 B
37 lines
942 B
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 |
|
{ |
|
/// <summary> |
|
/// 案件Id |
|
/// </summary> |
|
public long? CaseId { get; set; } |
|
|
|
/// <summary> |
|
/// 结束时间 |
|
/// </summary> |
|
public DateTime? EndCreatedTime { get; set; } |
|
|
|
/// <summary> |
|
/// 开始时间 |
|
/// </summary> |
|
public DateTime? StartCreatedTime { get; set; } |
|
|
|
/// <summary> |
|
/// 案件进度 |
|
/// </summary> |
|
public int? CaseProgress { get; set; } |
|
|
|
/// <summary> |
|
/// 被监管人姓名 |
|
/// </summary> |
|
public string? SupervisedPersonName { get; set; } |
|
} |
|
}
|
|
|