4 changed files with 143 additions and 3 deletions
@ -0,0 +1,64 @@ |
|||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.ComponentModel; |
||||||
|
using System.Linq; |
||||||
|
using System.Text; |
||||||
|
using System.Threading.Tasks; |
||||||
|
|
||||||
|
namespace ATS.NonCustodial.Application.Contracts.Interfaces.Business.ViolationStatistics.Output |
||||||
|
{ |
||||||
|
public class ViolationExportDto |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// 案件Id |
||||||
|
/// </summary> |
||||||
|
public long CaseId { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 案件名称 |
||||||
|
/// </summary> |
||||||
|
[DisplayName("案件名称")] |
||||||
|
public string? CaseName { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 被监管人Id |
||||||
|
/// </summary> |
||||||
|
public long SupervisedPersonId { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 被监管人员 |
||||||
|
/// </summary> |
||||||
|
[DisplayName("被监管人员")] |
||||||
|
public string? SupervisedPersonName { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 部门受案号 |
||||||
|
/// </summary> |
||||||
|
[DisplayName("部门受案号")] |
||||||
|
public string? Bmsah { get; set; } |
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 监督单位 |
||||||
|
/// </summary> |
||||||
|
[DisplayName("监督单位")] |
||||||
|
public string? SupervisionUnit { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 案件类型 |
||||||
|
/// </summary> |
||||||
|
[DisplayName("案件类型")] |
||||||
|
public string? CaseTypeName { get; set; } |
||||||
|
|
||||||
|
|
||||||
|
/// <summary> |
||||||
|
/// 违规越界次数 |
||||||
|
/// </summary> |
||||||
|
[DisplayName("违规越界次数")] |
||||||
|
public int ViolationCount { get; set; } |
||||||
|
/// <summary> |
||||||
|
/// 案件创建日期 |
||||||
|
/// </summary> |
||||||
|
[DisplayName("案件创建日期")] |
||||||
|
public DateTime? CreatedTime { get; set; } |
||||||
|
} |
||||||
|
} |
||||||
Loading…
Reference in new issue