JudicialCasesStatistics.java
4.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package com.lhcredit.project.business.judicialCasesStatistics.domain;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.lhcredit.framework.web.domain.BaseEntity;
import lombok.NoArgsConstructor;
import java.util.Date;
/**
* 司法案件数量统计表 judicial_cases_statistics
*
* @author lhcredit
* @date 2024-06-13
*/
@Data
@Builder
@ApiModel(value = "司法案件数量统计")
@NoArgsConstructor
@AllArgsConstructor
public class JudicialCasesStatistics extends BaseEntity{
private static final long serialVersionUID=1L;
/** 主键编号 */
@ApiModelProperty(value = "主键编号")
private Integer id;
/** 案件类型 */
@ApiModelProperty(value = "案件类型")
private Integer caseType;
/** 案件类型名称 */
@ApiModelProperty(value = "案件类型名称")
private String caseTypeStr;
/** 1年内 */
@ApiModelProperty(value = "1年内")
private Integer oneyear;
/** 1-3年 */
@ApiModelProperty(value = "1-3年")
private Integer onetothreeyear;
/** 3-5年 */
@ApiModelProperty(value = "3-5年")
private Integer threetofiveyear;
/** 5年以上 */
@ApiModelProperty(value = "5年以上")
private Integer fiveyear;
/** 案件总数 */
@ApiModelProperty(value = "案件总数")
private Integer countTotal;
/** 已结案总数 */
@ApiModelProperty(value = "已结案总数")
private Integer countJieTotal;
/** 未结案总数 */
@ApiModelProperty(value = "未结案总数")
private Integer countWeiTotal;
/** 原告总数 */
@ApiModelProperty(value = "原告总数")
private Integer countYuangao;
/** 原告已结案总数 */
@ApiModelProperty(value = "原告已结案总数")
private Integer countJieYuangao;
/** 原告未结案总数 */
@ApiModelProperty(value = "原告未结案总数")
private Integer countWeiYuangao;
/** 被告总数 */
@ApiModelProperty(value = "被告总数")
private Integer countBeigao;
/** 被告已结案总数 */
@ApiModelProperty(value = "被告已结案总数")
private Integer countJieBeigao;
/** 被告未结案总数 */
@ApiModelProperty(value = "被告未结案总数")
private Integer countWeiBeigao;
/** 第三人已结案总数 */
@ApiModelProperty(value = "第三人已结案总数")
private Integer countJieOther;
/** 第三人未结案总数 */
@ApiModelProperty(value = "第三人未结案总数")
private Integer countWeiOther;
/** 涉诉总数 */
@ApiModelProperty(value = "涉诉总数")
private Integer sstotal;
/** 涉诉已结案数量 */
@ApiModelProperty(value = "涉诉已结案数量")
private Integer ssyja;
/** 涉诉未结案数量 */
@ApiModelProperty(value = "涉诉未结案数量")
private Integer sswja;
/** 原告已结案胜诉 */
@ApiModelProperty(value = "原告已结案胜诉")
private Integer ygyjass;
/** 原告已结案败诉 */
@ApiModelProperty(value = "原告已结案败诉")
private Integer ygyjabs;
/** 原告已结案未知 */
@ApiModelProperty(value = "原告已结案未知")
private Integer ygyjawz;
/** 原告未结案 */
@ApiModelProperty(value = "原告未结案")
private Integer ygwja;
/** 被告已结案胜诉 */
@ApiModelProperty(value = "被告已结案胜诉")
private Integer bgyjass;
/** 被告已结案败诉 */
@ApiModelProperty(value = "被告已结案败诉")
private Integer bgyjabs;
/** 被告已结案未知 */
@ApiModelProperty(value = "被告已结案未知")
private Integer bgyjawz;
/** 被告未结案 */
@ApiModelProperty(value = "被告未结案")
private Integer bgwja;
/** 第三人已结案胜诉 */
@ApiModelProperty(value = "第三人已结案胜诉")
private Integer dsryjass;
/** 第三人已结案败诉 */
@ApiModelProperty(value = "第三人已结案败诉")
private Integer dsryjabs;
/** 第三人已结案未知 */
@ApiModelProperty(value = "第三人已结案未知")
private Integer dsryjawz;
/** 第三人未结案 */
@ApiModelProperty(value = "第三人未结案")
private Integer dsrwja;
/** */
@ApiModelProperty(value = "")
private String paramsdata;
/** 报告Id */
@ApiModelProperty(value = "报告Id")
private String reportId;
/** 0:已删除 1:正常 */
@ApiModelProperty(value = "0:已删除 1:正常")
private Integer dataStatus;
/** 企业名称 */
@ApiModelProperty(value = "企业名称")
private String ename;
/** 最后更新时间 */
@ApiModelProperty(value = "最后更新时间")
private Date lastUpdateTime;
/** 授信申请id */
@ApiModelProperty(value = "授信申请id")
private Long cgId;
}