智能仲裁后端服务

CaseApplication.java 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811
  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 java.math.BigDecimal;
  6. import java.util.Date;
  7. import java.util.List;
  8. public class CaseApplication extends BaseEntity {
  9. private static final long serialVersionUID = 1L;
  10. /** ID */
  11. private Long id;
  12. /** 案件编号 */
  13. // @Excel(name = "案件编号")
  14. private String caseNum;
  15. /** 案件标的 */
  16. @Excel(name = "案件标的")
  17. private BigDecimal caseSubjectAmount;
  18. /** 立案日期 */
  19. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  20. private Date registerDate;
  21. /** 仲裁方式 */
  22. private Integer arbitratMethod;
  23. public Integer getArbitratMethod() {
  24. return arbitratMethod;
  25. }
  26. public void setArbitratMethod(Integer arbitratMethod) {
  27. this.arbitratMethod = arbitratMethod;
  28. }
  29. /** 仲裁方式名称 */
  30. private String arbitratMethodName;
  31. public String getArbitratMethodName() {
  32. return arbitratMethodName;
  33. }
  34. public void setArbitratMethodName(String arbitratMethodName) {
  35. this.arbitratMethodName = arbitratMethodName;
  36. }
  37. /** 案件状态 */
  38. private Integer caseStatus;
  39. public Integer getCaseStatus() {
  40. return caseStatus;
  41. }
  42. public void setCaseStatus(Integer caseStatus) {
  43. this.caseStatus = caseStatus;
  44. }
  45. /** 开庭日期 */
  46. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  47. private Date hearDate;
  48. /** 借款开始日期 */
  49. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  50. @Excel(name = "借款开始日期")
  51. private Date loanStartDate;
  52. /** 借款结束日期 */
  53. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  54. @Excel(name = "借款结束日期")
  55. private Date loanEndDate;
  56. /** 合同编号 */
  57. @Excel(name = "合同编号")
  58. private String contractNumber;
  59. /** 申请人主张欠本金 */
  60. @Excel(name = "申请人主张欠本金")
  61. private BigDecimal claimPrinciOwed;
  62. /** 申请人主张欠利息 */
  63. @Excel(name = "申请人主张欠利息")
  64. private BigDecimal claimInterestOwed;
  65. /** 申请人主张违约金 */
  66. @Excel(name = "申请人主张违约金")
  67. private BigDecimal claimLiquidDamag;
  68. /** 申请人仲裁诉求 */
  69. @Excel(name = "申请人仲裁诉求")
  70. private String arbitratClaims;
  71. /** 仲裁应缴费用 */
  72. private BigDecimal feePayable;
  73. /** 开始在线视频时间 */
  74. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  75. private Date beginVideoDate;
  76. /** 在线视频人员 */
  77. private String onlineVideoPerson;
  78. /** 仲裁员id */
  79. private String arbitratorId;
  80. /** 仲裁员名称 */
  81. private String arbitratorName;
  82. /** 案件名称 */
  83. private String caseName;
  84. /** 案件描述 */
  85. private String caseDescribe;
  86. /** 裁决书URL */
  87. private String filearbitraUrl;
  88. public String getFilearbitraUrl() {
  89. return filearbitraUrl;
  90. }
  91. public void setFilearbitraUrl(String filearbitraUrl) {
  92. this.filearbitraUrl = filearbitraUrl;
  93. }
  94. /** 是否同意组庭 */
  95. private Integer isAgreePendTral;
  96. /** 是否有异议需要举证 */
  97. private Integer objectionAddEviden;
  98. /** 是否需要开庭审理 */
  99. private Integer openCourtHear;
  100. /** 支付状态 */
  101. private Integer paymentStatus;
  102. /** 支付状态描述 */
  103. private String paymentStatusName;
  104. /**
  105. * 支付方式code,0线上支付,1线下支付
  106. */
  107. private Integer payTypeCode;
  108. /**
  109. * 支付方式name,0线上支付,1线下支付
  110. */
  111. private String payTypeName;
  112. /**
  113. * 缴费凭证
  114. */
  115. private List<CaseAttach> payOrderList;
  116. // 导入校验失败信息
  117. private StringBuilder errorMsg;
  118. public Integer getPayTypeCode() {
  119. return payTypeCode;
  120. }
  121. public void setPayTypeCode(Integer payTypeCode) {
  122. this.payTypeCode = payTypeCode;
  123. }
  124. public String getPayTypeName() {
  125. return payTypeName;
  126. }
  127. public void setPayTypeName(String payTypeName) {
  128. this.payTypeName = payTypeName;
  129. }
  130. public List<CaseAttach> getPayOrderList() {
  131. return payOrderList;
  132. }
  133. public void setPayOrderList(List<CaseAttach> payOrderList) {
  134. this.payOrderList = payOrderList;
  135. }
  136. public StringBuilder getErrorMsg() {
  137. return errorMsg;
  138. }
  139. public void setErrorMsg(StringBuilder errorMsg) {
  140. this.errorMsg = errorMsg;
  141. }
  142. public Integer getPaymentStatus() {
  143. return paymentStatus;
  144. }
  145. public void setPaymentStatus(Integer paymentStatus) {
  146. this.paymentStatus = paymentStatus;
  147. }
  148. public String getPaymentStatusName() {
  149. return paymentStatusName;
  150. }
  151. public void setPaymentStatusName(String paymentStatusName) {
  152. this.paymentStatusName = paymentStatusName;
  153. }
  154. public Integer getIsAgreePendTral() {
  155. return isAgreePendTral;
  156. }
  157. public void setIsAgreePendTral(Integer isAgreePendTral) {
  158. this.isAgreePendTral = isAgreePendTral;
  159. }
  160. public Integer getObjectionAddEviden() {
  161. return objectionAddEviden;
  162. }
  163. public void setObjectionAddEviden(Integer objectionAddEviden) {
  164. this.objectionAddEviden = objectionAddEviden;
  165. }
  166. public Integer getOpenCourtHear() {
  167. return openCourtHear;
  168. }
  169. public void setOpenCourtHear(Integer openCourtHear) {
  170. this.openCourtHear = openCourtHear;
  171. }
  172. /** 案件状态名称 */
  173. private String caseStatusName;
  174. /** 是否同意审核 */
  175. private Integer agreeOrNotCheck;
  176. public Integer getAgreeOrNotCheck() {
  177. return agreeOrNotCheck;
  178. }
  179. public void setAgreeOrNotCheck(Integer agreeOrNotCheck) {
  180. this.agreeOrNotCheck = agreeOrNotCheck;
  181. }
  182. public String getCaseStatusName() {
  183. return caseStatusName;
  184. }
  185. public void setCaseStatusName(String caseStatusName) {
  186. this.caseStatusName = caseStatusName;
  187. }
  188. /** 申请人名称 */
  189. private String applicantName;
  190. /** 被申请人名称 */
  191. private String respondentName;
  192. /**
  193. * 用户身份证号
  194. */
  195. private String idCard;
  196. /**
  197. * 用户id
  198. */
  199. private String userId;
  200. private List<Long> deptIds;
  201. public List<Long> getDeptIds() {
  202. return deptIds;
  203. }
  204. public void setDeptIds(List<Long> deptIds) {
  205. this.deptIds = deptIds;
  206. }
  207. public String getUserId() {
  208. return userId;
  209. }
  210. public void setUserId(String userId) {
  211. this.userId = userId;
  212. }
  213. public String getIdCard() {
  214. return idCard;
  215. }
  216. public void setIdCard(String idCard) {
  217. this.idCard = idCard;
  218. }
  219. public String getApplicantName() {
  220. return applicantName;
  221. }
  222. public void setApplicantName(String applicantName) {
  223. this.applicantName = applicantName;
  224. }
  225. public String getRespondentName() {
  226. return respondentName;
  227. }
  228. public void setRespondentName(String respondentName) {
  229. this.respondentName = respondentName;
  230. }
  231. public String getCaseName() {
  232. return caseName;
  233. }
  234. public void setCaseName(String caseName) {
  235. this.caseName = caseName;
  236. }
  237. public String getCaseDescribe() {
  238. return caseDescribe;
  239. }
  240. public void setCaseDescribe(String caseDescribe) {
  241. this.caseDescribe = caseDescribe;
  242. }
  243. public String getCaseResult() {
  244. return caseResult;
  245. }
  246. public void setCaseResult(String caseResult) {
  247. this.caseResult = caseResult;
  248. }
  249. /** 仲裁结果 */
  250. private String caseResult;
  251. public String getArbitratorName() {
  252. return arbitratorName;
  253. }
  254. public void setArbitratorName(String arbitratorName) {
  255. this.arbitratorName = arbitratorName;
  256. }
  257. /** 是否指派仲裁员 */
  258. private int pendingAppointArbotrar;
  259. public int getPendingAppointArbotrar() {
  260. return pendingAppointArbotrar;
  261. }
  262. public void setPendingAppointArbotrar(int pendingAppointArbotrar) {
  263. this.pendingAppointArbotrar = pendingAppointArbotrar;
  264. }
  265. public String getArbitratorId() {
  266. return arbitratorId;
  267. }
  268. public void setArbitratorId(String arbitratorId) {
  269. this.arbitratorId = arbitratorId;
  270. }
  271. /** 案件关联人信息 */
  272. private List<CaseAffiliate> caseAffiliates;
  273. /** 案件仲裁员 */
  274. private List<Arbitrator> arbitrators;
  275. private List<Integer> caseStatusList;
  276. private List<Integer> annexTypeList;
  277. private Integer annexType;
  278. public Integer getAnnexType() {
  279. return annexType;
  280. }
  281. public void setAnnexType(Integer annexType) {
  282. this.annexType = annexType;
  283. }
  284. public List<Integer> getAnnexTypeList() {
  285. return annexTypeList;
  286. }
  287. public void setAnnexTypeList(List<Integer> annexTypeList) {
  288. this.annexTypeList = annexTypeList;
  289. }
  290. /**
  291. * 案件附件列表
  292. */
  293. private List<CaseAttach> caseAttachList;
  294. public List<CaseAttach> getCaseAttachList() {
  295. return caseAttachList;
  296. }
  297. public void setCaseAttachList(List<CaseAttach> caseAttachList) {
  298. this.caseAttachList = caseAttachList;
  299. }
  300. public List<Integer> getCaseStatusList() {
  301. return caseStatusList;
  302. }
  303. public void setCaseStatusList(List<Integer> caseStatusList) {
  304. this.caseStatusList = caseStatusList;
  305. }
  306. /** 仲裁记录 */
  307. private ArbitrateRecord arbitrateRecord;
  308. public ArbitrateRecord getArbitrateRecord() {
  309. return arbitrateRecord;
  310. }
  311. public void setArbitrateRecord(ArbitrateRecord arbitrateRecord) {
  312. this.arbitrateRecord = arbitrateRecord;
  313. }
  314. public List<Arbitrator> getArbitrators() {
  315. return arbitrators;
  316. }
  317. public void setArbitrators(List<Arbitrator> arbitrators) {
  318. this.arbitrators = arbitrators;
  319. }
  320. /** 身份类型 */
  321. // @Excel(name = "身份类型")
  322. private int identityType;
  323. /**
  324. * 申请人主体信息
  325. */
  326. /** 姓名 */
  327. @Excel(name = "申请人主体信息-申请人(机构)",width = 26)
  328. private String name;
  329. /**
  330. * 申请人主体信息-申请人(机构)id
  331. */
  332. private String nameId;
  333. /** 身份证号 */
  334. @Excel(name = "申请人主体信息-代码",width = 26)
  335. private String identityNum;
  336. /** 联系电话 */
  337. @Excel(name = "申请人主体信息-联系电话",width = 26)
  338. private String contactTelphone;
  339. /** 联系地址 */
  340. @Excel(name = "申请人主体信息-联系地址",width = 26)
  341. private String contactAddress;
  342. /** 单位电话 */
  343. @Excel(name = "申请人主体信息-单位电话",width = 26)
  344. private String workTelphone;
  345. /** 单位地址 */
  346. @Excel(name = "申请人主体信息-单位地址",width = 26)
  347. private String workAddress;
  348. /** 代理人姓名 */
  349. @Excel(name = "申请人主体信息-代理人姓名",width = 26)
  350. private String nameAgent;
  351. /** 身份证号 */
  352. @Excel(name = "申请人主体信息-代理人身份证号",width = 26)
  353. private String identityNumAgent;
  354. /** 联系电话 */
  355. @Excel(name = "申请人主体信息-代理人联系电话",width = 26)
  356. private String contactTelphoneAgent;
  357. /** 联系地址 */
  358. @Excel(name = "申请人主体信息-代理人联系地址",width = 26)
  359. private String contactAddressAgent;
  360. /**
  361. * 被申请人主体信息
  362. */
  363. /** 姓名 */
  364. @Excel(name = "被申请人主体信息-申请人姓名",width = 26)
  365. private String debtorName;
  366. /** 身份证号 */
  367. @Excel(name = "被申请人主体信息-身份证号",width = 26)
  368. private String debtorIdentityNum;
  369. /** 联系电话 */
  370. @Excel(name = "被申请人主体信息-联系电话",width = 26)
  371. private String debtorContactTelphone;
  372. /** 联系地址 */
  373. @Excel(name = "被申请人主体信息-联系地址",width = 26)
  374. private String debtorContactAddress;
  375. /** 单位电话 */
  376. @Excel(name = "被申请人主体信息-单位电话",width = 26)
  377. private String debtorWorkTelphone;
  378. /** 单位地址 */
  379. @Excel(name = "被申请人主体信息-单位地址",width = 26)
  380. private String debtorWorkAddress;
  381. /** 代理人姓名 */
  382. @Excel(name = "被申请人主体信息-代理人姓名",width = 26)
  383. private String debtorNameAgent;
  384. /** 身份证号 */
  385. @Excel(name = "被申请人主体信息-代理人身份证号",width = 26)
  386. private String debtorIdentityNumAgent;
  387. /** 联系电话 */
  388. @Excel(name = "被申请人主体信息-代理人联系电话",width = 26)
  389. private String debtorContactTelphoneAgent;
  390. /** 联系地址 */
  391. @Excel(name = "被申请人主体信息-代理人联系地址",width = 26)
  392. private String debtorContactAddressAgent;
  393. public int getIdentityType() {
  394. return identityType;
  395. }
  396. public void setIdentityType(int identityType) {
  397. this.identityType = identityType;
  398. }
  399. public String getName() {
  400. return name;
  401. }
  402. public void setName(String name) {
  403. this.name = name;
  404. }
  405. public String getNameId() {
  406. return nameId;
  407. }
  408. public void setNameId(String nameId) {
  409. this.nameId = nameId;
  410. }
  411. public String getIdentityNum() {
  412. return identityNum;
  413. }
  414. public void setIdentityNum(String identityNum) {
  415. this.identityNum = identityNum;
  416. }
  417. public String getWorkTelphone() {
  418. return workTelphone;
  419. }
  420. public void setWorkTelphone(String workTelphone) {
  421. this.workTelphone = workTelphone;
  422. }
  423. public String getContactTelphone() {
  424. return contactTelphone;
  425. }
  426. public void setContactTelphone(String contactTelphone) {
  427. this.contactTelphone = contactTelphone;
  428. }
  429. public String getContactAddress() {
  430. return contactAddress;
  431. }
  432. public void setContactAddress(String contactAddress) {
  433. this.contactAddress = contactAddress;
  434. }
  435. public String getWorkAddress() {
  436. return workAddress;
  437. }
  438. public void setWorkAddress(String workAddress) {
  439. this.workAddress = workAddress;
  440. }
  441. public String getNameAgent() {
  442. return nameAgent;
  443. }
  444. public void setNameAgent(String nameAgent) {
  445. this.nameAgent = nameAgent;
  446. }
  447. public String getIdentityNumAgent() {
  448. return identityNumAgent;
  449. }
  450. public void setIdentityNumAgent(String identityNumAgent) {
  451. this.identityNumAgent = identityNumAgent;
  452. }
  453. public String getContactTelphoneAgent() {
  454. return contactTelphoneAgent;
  455. }
  456. public void setContactTelphoneAgent(String contactTelphoneAgent) {
  457. this.contactTelphoneAgent = contactTelphoneAgent;
  458. }
  459. public String getContactAddressAgent() {
  460. return contactAddressAgent;
  461. }
  462. public void setContactAddressAgent(String contactAddressAgent) {
  463. this.contactAddressAgent = contactAddressAgent;
  464. }
  465. public String getDebtorName() {
  466. return debtorName;
  467. }
  468. public void setDebtorName(String debtorName) {
  469. this.debtorName = debtorName;
  470. }
  471. public String getDebtorIdentityNum() {
  472. return debtorIdentityNum;
  473. }
  474. public void setDebtorIdentityNum(String debtorIdentityNum) {
  475. this.debtorIdentityNum = debtorIdentityNum;
  476. }
  477. public String getDebtorContactTelphone() {
  478. return debtorContactTelphone;
  479. }
  480. public void setDebtorContactTelphone(String debtorContactTelphone) {
  481. this.debtorContactTelphone = debtorContactTelphone;
  482. }
  483. public String getDebtorContactAddress() {
  484. return debtorContactAddress;
  485. }
  486. public void setDebtorContactAddress(String debtorContactAddress) {
  487. this.debtorContactAddress = debtorContactAddress;
  488. }
  489. public String getDebtorWorkTelphone() {
  490. return debtorWorkTelphone;
  491. }
  492. public void setDebtorWorkTelphone(String debtorWorkTelphone) {
  493. this.debtorWorkTelphone = debtorWorkTelphone;
  494. }
  495. public String getDebtorWorkAddress() {
  496. return debtorWorkAddress;
  497. }
  498. public void setDebtorWorkAddress(String debtorWorkAddress) {
  499. this.debtorWorkAddress = debtorWorkAddress;
  500. }
  501. public String getDebtorNameAgent() {
  502. return debtorNameAgent;
  503. }
  504. public void setDebtorNameAgent(String debtorNameAgent) {
  505. this.debtorNameAgent = debtorNameAgent;
  506. }
  507. public String getDebtorIdentityNumAgent() {
  508. return debtorIdentityNumAgent;
  509. }
  510. public void setDebtorIdentityNumAgent(String debtorIdentityNumAgent) {
  511. this.debtorIdentityNumAgent = debtorIdentityNumAgent;
  512. }
  513. public String getDebtorContactTelphoneAgent() {
  514. return debtorContactTelphoneAgent;
  515. }
  516. public void setDebtorContactTelphoneAgent(String debtorContactTelphoneAgent) {
  517. this.debtorContactTelphoneAgent = debtorContactTelphoneAgent;
  518. }
  519. public String getDebtorContactAddressAgent() {
  520. return debtorContactAddressAgent;
  521. }
  522. public void setDebtorContactAddressAgent(String debtorContactAddressAgent) {
  523. this.debtorContactAddressAgent = debtorContactAddressAgent;
  524. }
  525. public Long getId() {
  526. return id;
  527. }
  528. public void setId(Long id) {
  529. this.id = id;
  530. }
  531. public String getCaseNum() {
  532. return caseNum;
  533. }
  534. public void setCaseNum(String caseNum) {
  535. this.caseNum = caseNum;
  536. }
  537. public String getContractNumber() {
  538. return contractNumber;
  539. }
  540. public void setContractNumber(String contractNumber) {
  541. this.contractNumber = contractNumber;
  542. }
  543. public BigDecimal getCaseSubjectAmount() {
  544. return caseSubjectAmount;
  545. }
  546. public void setCaseSubjectAmount(BigDecimal caseSubjectAmount) {
  547. this.caseSubjectAmount = caseSubjectAmount;
  548. }
  549. public Date getRegisterDate() {
  550. return registerDate;
  551. }
  552. public void setRegisterDate(Date registerDate) {
  553. this.registerDate = registerDate;
  554. }
  555. public Date getHearDate() {
  556. return hearDate;
  557. }
  558. public void setHearDate(Date hearDate) {
  559. this.hearDate = hearDate;
  560. }
  561. public String getArbitratClaims() {
  562. return arbitratClaims;
  563. }
  564. public void setArbitratClaims(String arbitratClaims) {
  565. this.arbitratClaims = arbitratClaims;
  566. }
  567. public Date getLoanStartDate() {
  568. return loanStartDate;
  569. }
  570. public void setLoanStartDate(Date loanStartDate) {
  571. this.loanStartDate = loanStartDate;
  572. }
  573. public Date getLoanEndDate() {
  574. return loanEndDate;
  575. }
  576. public void setLoanEndDate(Date loanEndDate) {
  577. this.loanEndDate = loanEndDate;
  578. }
  579. public BigDecimal getClaimPrinciOwed() {
  580. return claimPrinciOwed;
  581. }
  582. public void setClaimPrinciOwed(BigDecimal claimPrinciOwed) {
  583. this.claimPrinciOwed = claimPrinciOwed;
  584. }
  585. public BigDecimal getClaimInterestOwed() {
  586. return claimInterestOwed;
  587. }
  588. public void setClaimInterestOwed(BigDecimal claimInterestOwed) {
  589. this.claimInterestOwed = claimInterestOwed;
  590. }
  591. public BigDecimal getClaimLiquidDamag() {
  592. return claimLiquidDamag;
  593. }
  594. public void setClaimLiquidDamag(BigDecimal claimLiquidDamag) {
  595. this.claimLiquidDamag = claimLiquidDamag;
  596. }
  597. public BigDecimal getFeePayable() {
  598. return feePayable;
  599. }
  600. public void setFeePayable(BigDecimal feePayable) {
  601. this.feePayable = feePayable;
  602. }
  603. public Date getBeginVideoDate() {
  604. return beginVideoDate;
  605. }
  606. public void setBeginVideoDate(Date beginVideoDate) {
  607. this.beginVideoDate = beginVideoDate;
  608. }
  609. public String getOnlineVideoPerson() {
  610. return onlineVideoPerson;
  611. }
  612. public void setOnlineVideoPerson(String onlineVideoPerson) {
  613. this.onlineVideoPerson = onlineVideoPerson;
  614. }
  615. public List<CaseAffiliate> getCaseAffiliates() {
  616. return caseAffiliates;
  617. }
  618. public void setCaseAffiliates(List<CaseAffiliate> caseAffiliates) {
  619. this.caseAffiliates = caseAffiliates;
  620. }
  621. }