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.
33 lines
994 B
33 lines
994 B
|
3 months ago
|
using ATS.NonCustodial.Domain.Shared.Enums;
|
||
|
|
using ATS.NonCustodial.Shared.Common.Dtos;
|
||
|
|
|
||
|
|
namespace ATS.NonCustodial.Application.Contracts.Interfaces.Business.AppCaseManagements.AppCaseManagement.Input
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 案件管理分页查询入参
|
||
|
|
/// </summary>
|
||
|
|
/// Author:mxg
|
||
|
|
/// CreatedTimed:2022-06-06 10:48 AM
|
||
|
|
public class AppCaseManagementGetPageInput : PageRequestBaseInput
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 案件名称
|
||
|
|
/// </summary>
|
||
|
|
public string? CaseName { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 判决状态
|
||
|
|
/// </summary>
|
||
|
|
public List<long>? JudgmentStatusIds { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 案件进度枚举 (0:待执行 1:执行中 2:已结束)
|
||
|
|
/// </summary>
|
||
|
|
public List<CaseProgressEnum>? CaseProgresses { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 案件类型(数据来自字典)
|
||
|
|
/// </summary>
|
||
|
|
public long? CaseTypeId { get; set; }
|
||
|
|
}
|
||
|
|
}
|