智能仲裁后端服务

CaseApplication.java 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. package com.ruoyi.wisdomarbitrate.domain;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.ruoyi.common.annotation.Excel;
  4. import com.ruoyi.common.core.domain.BaseEntity;
  5. import lombok.Data;
  6. import com.ruoyi.wisdomarbitrate.domain.vo.ColumnValue;
  7. import java.math.BigDecimal;
  8. import java.util.Date;
  9. import java.util.List;
  10. @Data
  11. public class CaseApplication extends BaseEntity {
  12. private static final long serialVersionUID = 1L;
  13. /**
  14. * 查询案件时区分是否待办案件,0待办案件,1已办案件
  15. */
  16. private String selectCaseStatus;
  17. /** ID */
  18. private Long id;
  19. /** 案件名称 */
  20. @Excel(name = "案件名称")
  21. private String caseName;
  22. /** 案件编号 */
  23. // @Excel(name = "案件编号")
  24. private String caseNum;
  25. /** 案件标的 */
  26. @Excel(name = "案件标的")
  27. private BigDecimal caseSubjectAmount;
  28. /**
  29. * 模板id
  30. */
  31. private Long templateId;
  32. /** 立案日期 */
  33. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  34. private Date registerDate;
  35. /** 仲裁方式 */
  36. private Integer arbitratMethod;
  37. /**
  38. * 是否导入,0手动录入,1导入,默认0
  39. */
  40. private Integer importFlag;
  41. /** 仲裁方式名称 */
  42. private String arbitratMethodName;
  43. /** 案件状态 */
  44. private Integer caseStatus;
  45. /** 申请人是否书面审理 */
  46. private Integer applicantIsWrittenHear;
  47. /** 被申请人是否书面审理 */
  48. private Integer respondentIsWrittenHear;
  49. /** 案件申请表ID */
  50. private Long caseAppliId;
  51. /** 开庭日期 */
  52. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  53. private Date hearDate;
  54. /** 借款开始日期 */
  55. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  56. @Excel(name = "借款开始日期")
  57. private Date loanStartDate;
  58. /** 借款结束日期 */
  59. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  60. @Excel(name = "借款结束日期")
  61. private Date loanEndDate;
  62. /** 合同编号 */
  63. @Excel(name = "合同编号")
  64. private String contractNumber;
  65. /** 申请人主张欠本金 */
  66. @Excel(name = "申请人主张欠本金")
  67. private BigDecimal claimPrinciOwed;
  68. /** 申请人主张欠利息 */
  69. @Excel(name = "申请人主张欠利息")
  70. private BigDecimal claimInterestOwed;
  71. /** 申请人主张违约金 */
  72. @Excel(name = "申请人主张违约金")
  73. private BigDecimal claimLiquidDamag;
  74. /** 申请人请求仲裁庭裁决 */
  75. @Excel(name = "申请人请求仲裁庭裁决",width = 36)
  76. private String requestRule;
  77. /** 是否财产保全申请 */
  78. @Excel(name = "是否财产保全申请",width = 26,combo= {"是","否"},readConverterExp = "0=否,1=是")
  79. private Integer properPreser;
  80. /** 申请人仲裁请求及事实和理由 */
  81. @Excel(name = "申请人仲裁请求及事实和理由",width = 36)
  82. private String arbitratClaims;
  83. /** 仲裁应缴费用 */
  84. private BigDecimal feePayable;
  85. /** 开始在线视频时间 */
  86. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  87. private Date beginVideoDate;
  88. /** 在线视频人员 */
  89. private String onlineVideoPerson;
  90. /** 仲裁员id */
  91. private String arbitratorId;
  92. /** 仲裁员名称 */
  93. private String arbitratorName;
  94. /** 案件描述 */
  95. private String caseDescribe;
  96. /** 裁决书URL */
  97. private String filearbitraUrl;
  98. /** 是否同意组庭 */
  99. private Integer isAgreePendTral;
  100. /** 是否有异议需要举证 */
  101. private Integer objectionAddEviden;
  102. /** 是否需要开庭审理 */
  103. private Integer openCourtHear;
  104. /** 是否仲裁反请求 */
  105. private Integer adjudicaCounter;
  106. /**
  107. * 仲裁反请求原因
  108. */
  109. private String adjudicaCounterReason;
  110. /** 被申请人是否缺席 */
  111. private Integer isAbsence;
  112. /** 是否管辖异议申请 */
  113. private Integer objectiJuris;
  114. /** 被申请人质证意见 */
  115. private String responCrossOpin;
  116. /** 被申请人的答辩意见 */
  117. private String responDefenOpini;
  118. /** 申请人是否缺席 */
  119. private Integer appliIsAbsen;
  120. /** 申请人质证意见 */
  121. private String applicaCrossOpin;
  122. /** 支付状态 */
  123. private Integer paymentStatus;
  124. /** 支付状态描述 */
  125. private String paymentStatusName;
  126. /**
  127. * 支付方式code,0线上支付,1线下支付
  128. */
  129. private Integer payTypeCode;
  130. /**
  131. * 支付方式name,0线上支付,1线下支付
  132. */
  133. private String payTypeName;
  134. /**
  135. * 缴费凭证
  136. */
  137. private List<CaseAttach> payOrderList;
  138. // 导入校验失败信息
  139. private StringBuilder errorMsg;
  140. /**
  141. * 是否锁定,0-否,1-是
  142. */
  143. private Integer lockStatus;
  144. /** 案件状态名称 */
  145. private String caseStatusName;
  146. /** 是否同意审核 */
  147. private Integer agreeOrNotCheck;
  148. /** 申请人名称 */
  149. private String applicantName;
  150. /** 被申请人名称 */
  151. private String respondentName;
  152. /**
  153. * 用户身份证号
  154. */
  155. private String idCard;
  156. /**
  157. * 用户id
  158. */
  159. private String userId;
  160. /**
  161. * 登录用户用户名
  162. */
  163. private String loginUserName;
  164. private List<Long> deptIds;
  165. /**
  166. * 部门长状态
  167. */
  168. private List<Integer> deptHeadStatus;
  169. /**
  170. * 代理人角色有关部门
  171. */
  172. private List<Long> agentDeptIds;
  173. /**
  174. * 财务状态
  175. */
  176. private Integer financeStatus;
  177. /**
  178. * 是否是被申请人,仲裁员,部门长,财务,代理人,0-否,1-是
  179. */
  180. private Integer isOtherRole;
  181. /**
  182. * 案件日志id
  183. */
  184. private Long caseLogId;
  185. /** 仲裁结果 */
  186. private String caseResult;
  187. /** 是否指派仲裁员 */
  188. private int pendingAppointArbotrar;
  189. /** 案件关联人信息 */
  190. private List<CaseAffiliate> caseAffiliates;
  191. /** 案件仲裁员 */
  192. private List<Arbitrator> arbitrators;
  193. private List<Integer> caseStatusList;
  194. private List<Integer> annexTypeList;
  195. private Integer annexType;
  196. /**
  197. * 案件附件列表
  198. */
  199. private List<CaseAttach> caseAttachList;
  200. /** 仲裁记录 */
  201. private ArbitrateRecord arbitrateRecord;
  202. /** 身份类型 */
  203. // @Excel(name = "身份类型")
  204. private int identityType;
  205. /**
  206. * 申请人主体信息
  207. */
  208. /** 姓名 */
  209. @Excel(name = "申请人主体信息-申请人(机构)",width = 26)
  210. private String name;
  211. /** 身份证号 */
  212. @Excel(name = "申请人主体信息-代码",width = 26)
  213. private String identityNum;
  214. /** 申请人主体信息-法定代表人 */
  215. @Excel(name = "申请人主体信息-法定代表人",width = 26)
  216. private String compLegalPerson;
  217. /** 申请人主体信息-法定代表人 */
  218. @Excel(name = "申请人主体信息-法定代表人职位",width = 26)
  219. private String compLegalperPost;
  220. /**
  221. * 申请人主体信息-申请人(机构)id
  222. */
  223. private String nameId;
  224. /** 联系电话 */
  225. @Excel(name = "申请人主体信息-联系电话",width = 26)
  226. private String contactTelphone;
  227. /** 联系地址 */
  228. @Excel(name = "申请人主体信息-联系地址",width = 26)
  229. private String contactAddress;
  230. /** 单位电话 */
  231. @Excel(name = "申请人主体信息-单位电话",width = 26)
  232. private String workTelphone;
  233. /** 单位地址 */
  234. @Excel(name = "申请人主体信息-单位地址",width = 26)
  235. private String workAddress;
  236. /** 申请人住所 */
  237. @Excel(name = "申请人主体信息-住所",width = 26)
  238. private String residenAffiliAppli;
  239. /** 申请人邮箱 */
  240. @Excel(name = "申请人主体信息-邮箱",width = 26)
  241. private String email;
  242. /** 代理人姓名 */
  243. @Excel(name = "申请人主体信息-代理人姓名",width = 26)
  244. private String nameAgent;
  245. /** 身份证号 */
  246. @Excel(name = "申请人主体信息-代理人身份证号",width = 26)
  247. private String identityNumAgent;
  248. /** 联系电话 */
  249. @Excel(name = "申请人主体信息-代理人联系电话",width = 26)
  250. private String contactTelphoneAgent;
  251. /** 联系地址 */
  252. @Excel(name = "申请人主体信息-代理人联系地址",width = 26)
  253. private String contactAddressAgent;
  254. /** 申请人代理人职称 */
  255. @Excel(name = "申请人主体信息-代理人职称",width = 26)
  256. private String appliAgentTitle;
  257. /**
  258. * 被申请人主体信息
  259. */
  260. /** 姓名 */
  261. @Excel(name = "被申请人主体信息-申请人姓名",width = 26)
  262. private String debtorName;
  263. /** 身份证号 */
  264. @Excel(name = "被申请人主体信息-身份证号",width = 26)
  265. private String debtorIdentityNum;
  266. /** 被申请人主体信息-性别 */
  267. @Excel(name = "被申请人主体信息-性别",width = 26,combo= {"男","女"},readConverterExp = "0=男,1=女")
  268. private String responSex;
  269. /** 被申请人主体信息-出生年月日 */
  270. @Excel(name = "被申请人主体信息-出生年月日",width = 26)
  271. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  272. private Date responBirth;
  273. /** 联系电话 */
  274. @Excel(name = "被申请人主体信息-联系电话",width = 26)
  275. private String debtorContactTelphone;
  276. /** 联系地址 */
  277. @Excel(name = "被申请人主体信息-联系地址",width = 26)
  278. private String debtorContactAddress;
  279. /** 被申请人住所 */
  280. @Excel(name = "被申请人主体信息-住所",width = 26)
  281. private String residenAffiliRespon;
  282. /** 单位电话 */
  283. @Excel(name = "被申请人主体信息-单位电话",width = 26)
  284. private String debtorWorkTelphone;
  285. /** 单位地址 */
  286. @Excel(name = "被申请人主体信息-单位地址",width = 26)
  287. private String debtorWorkAddress;
  288. /** 邮箱 */
  289. @Excel(name = "被申请人主体信息-邮箱",width = 26)
  290. private String debtorEmail;
  291. /** 代理人姓名 */
  292. @Excel(name = "被申请人主体信息-代理人姓名",width = 26)
  293. private String debtorNameAgent;
  294. /** 身份证号 */
  295. @Excel(name = "被申请人主体信息-代理人身份证号",width = 26)
  296. private String debtorIdentityNumAgent;
  297. /** 联系电话 */
  298. @Excel(name = "被申请人主体信息-代理人联系电话",width = 26)
  299. private String debtorContactTelphoneAgent;
  300. /** 联系地址 */
  301. @Excel(name = "被申请人主体信息-代理人联系地址",width = 26)
  302. private String debtorContactAddressAgent;
  303. /**
  304. * 申请机构id
  305. */
  306. private String applicationOrganId;
  307. /**
  308. * 版本号
  309. */
  310. private Integer version;
  311. /**
  312. * 修改案件的提交状态,0-未提交,1-已提交,2-同意,3-拒绝,4-撤销
  313. */
  314. private Integer updateSubmitStatus;
  315. /** 合同名称 */
  316. private String contractName;
  317. /**
  318. * 事实和理由
  319. */
  320. private String facts;
  321. /**
  322. * 合同甲方
  323. */
  324. private String partyA;
  325. /**
  326. * 利率
  327. */
  328. private String interestRate;
  329. /**
  330. * 待还金额
  331. */
  332. private String outstandingMoney;
  333. /**
  334. * 调解达成协议内容
  335. */
  336. private String mediationAgreement;
  337. /**
  338. * 金融消费纠纷基本情况
  339. */
  340. private String disputes;
  341. /**
  342. * 贷款类型
  343. */
  344. private String loanType;
  345. /**
  346. * 贷款期限
  347. */
  348. private String loanTerm;
  349. /**
  350. * 本案争议焦点
  351. */
  352. private String caseFocus;
  353. /**
  354. * 本案事实
  355. */
  356. private String caseFacts;
  357. /**
  358. * 被申请人对上述材料的质证意见
  359. */
  360. private String respondentOpinion;
  361. /**
  362. * 申请人对上述材料的质证意见
  363. */
  364. private String applicantOpinion;
  365. /**
  366. * 批号
  367. */
  368. private String batchNumber;
  369. /**
  370. * 自定义字段
  371. */
  372. private List<ColumnValue> columnValues;
  373. }