智能仲裁后端服务

CaseApplication.java 22KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895
  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 String requestRule;
  102. /** 是否仲裁反请求 */
  103. private Integer adjudicaCounter;
  104. /** 是否财产保全申请 */
  105. private Integer properPreser;
  106. /** 被申请人是否缺席 */
  107. private Integer isAbsence;
  108. /** 是否管辖异议申请 */
  109. private Integer objectiJuris;
  110. /** 被申请人质证意见 */
  111. private String responCrossOpin;
  112. /** 被申请人的答辩意见 */
  113. private String responDefenOpini;
  114. public String getResponDefenOpini() {
  115. return responDefenOpini;
  116. }
  117. public void setResponDefenOpini(String responDefenOpini) {
  118. this.responDefenOpini = responDefenOpini;
  119. }
  120. public String getRequestRule() {
  121. return requestRule;
  122. }
  123. public void setRequestRule(String requestRule) {
  124. this.requestRule = requestRule;
  125. }
  126. public Integer getAdjudicaCounter() {
  127. return adjudicaCounter;
  128. }
  129. public void setAdjudicaCounter(Integer adjudicaCounter) {
  130. this.adjudicaCounter = adjudicaCounter;
  131. }
  132. public Integer getProperPreser() {
  133. return properPreser;
  134. }
  135. public void setProperPreser(Integer properPreser) {
  136. this.properPreser = properPreser;
  137. }
  138. public Integer getIsAbsence() {
  139. return isAbsence;
  140. }
  141. public void setIsAbsence(Integer isAbsence) {
  142. this.isAbsence = isAbsence;
  143. }
  144. public Integer getObjectiJuris() {
  145. return objectiJuris;
  146. }
  147. public void setObjectiJuris(Integer objectiJuris) {
  148. this.objectiJuris = objectiJuris;
  149. }
  150. public String getResponCrossOpin() {
  151. return responCrossOpin;
  152. }
  153. public void setResponCrossOpin(String responCrossOpin) {
  154. this.responCrossOpin = responCrossOpin;
  155. }
  156. public String getApplicaCrossOpin() {
  157. return applicaCrossOpin;
  158. }
  159. public void setApplicaCrossOpin(String applicaCrossOpin) {
  160. this.applicaCrossOpin = applicaCrossOpin;
  161. }
  162. /** 申请人质证意见 */
  163. private String applicaCrossOpin;
  164. /** 支付状态 */
  165. private Integer paymentStatus;
  166. /** 支付状态描述 */
  167. private String paymentStatusName;
  168. /**
  169. * 支付方式code,0线上支付,1线下支付
  170. */
  171. private Integer payTypeCode;
  172. /**
  173. * 支付方式name,0线上支付,1线下支付
  174. */
  175. private String payTypeName;
  176. /**
  177. * 缴费凭证
  178. */
  179. private List<CaseAttach> payOrderList;
  180. // 导入校验失败信息
  181. private StringBuilder errorMsg;
  182. public Integer getPayTypeCode() {
  183. return payTypeCode;
  184. }
  185. public void setPayTypeCode(Integer payTypeCode) {
  186. this.payTypeCode = payTypeCode;
  187. }
  188. public String getPayTypeName() {
  189. return payTypeName;
  190. }
  191. public void setPayTypeName(String payTypeName) {
  192. this.payTypeName = payTypeName;
  193. }
  194. public List<CaseAttach> getPayOrderList() {
  195. return payOrderList;
  196. }
  197. public void setPayOrderList(List<CaseAttach> payOrderList) {
  198. this.payOrderList = payOrderList;
  199. }
  200. public StringBuilder getErrorMsg() {
  201. return errorMsg;
  202. }
  203. public void setErrorMsg(StringBuilder errorMsg) {
  204. this.errorMsg = errorMsg;
  205. }
  206. public Integer getPaymentStatus() {
  207. return paymentStatus;
  208. }
  209. public void setPaymentStatus(Integer paymentStatus) {
  210. this.paymentStatus = paymentStatus;
  211. }
  212. public String getPaymentStatusName() {
  213. return paymentStatusName;
  214. }
  215. public void setPaymentStatusName(String paymentStatusName) {
  216. this.paymentStatusName = paymentStatusName;
  217. }
  218. public Integer getIsAgreePendTral() {
  219. return isAgreePendTral;
  220. }
  221. public void setIsAgreePendTral(Integer isAgreePendTral) {
  222. this.isAgreePendTral = isAgreePendTral;
  223. }
  224. public Integer getObjectionAddEviden() {
  225. return objectionAddEviden;
  226. }
  227. public void setObjectionAddEviden(Integer objectionAddEviden) {
  228. this.objectionAddEviden = objectionAddEviden;
  229. }
  230. public Integer getOpenCourtHear() {
  231. return openCourtHear;
  232. }
  233. public void setOpenCourtHear(Integer openCourtHear) {
  234. this.openCourtHear = openCourtHear;
  235. }
  236. /** 案件状态名称 */
  237. private String caseStatusName;
  238. /** 是否同意审核 */
  239. private Integer agreeOrNotCheck;
  240. public Integer getAgreeOrNotCheck() {
  241. return agreeOrNotCheck;
  242. }
  243. public void setAgreeOrNotCheck(Integer agreeOrNotCheck) {
  244. this.agreeOrNotCheck = agreeOrNotCheck;
  245. }
  246. public String getCaseStatusName() {
  247. return caseStatusName;
  248. }
  249. public void setCaseStatusName(String caseStatusName) {
  250. this.caseStatusName = caseStatusName;
  251. }
  252. /** 申请人名称 */
  253. private String applicantName;
  254. /** 被申请人名称 */
  255. private String respondentName;
  256. /**
  257. * 用户身份证号
  258. */
  259. private String idCard;
  260. /**
  261. * 用户id
  262. */
  263. private String userId;
  264. private List<Long> deptIds;
  265. public List<Long> getDeptIds() {
  266. return deptIds;
  267. }
  268. public void setDeptIds(List<Long> deptIds) {
  269. this.deptIds = deptIds;
  270. }
  271. public String getUserId() {
  272. return userId;
  273. }
  274. public void setUserId(String userId) {
  275. this.userId = userId;
  276. }
  277. public String getIdCard() {
  278. return idCard;
  279. }
  280. public void setIdCard(String idCard) {
  281. this.idCard = idCard;
  282. }
  283. public String getApplicantName() {
  284. return applicantName;
  285. }
  286. public void setApplicantName(String applicantName) {
  287. this.applicantName = applicantName;
  288. }
  289. public String getRespondentName() {
  290. return respondentName;
  291. }
  292. public void setRespondentName(String respondentName) {
  293. this.respondentName = respondentName;
  294. }
  295. public String getCaseName() {
  296. return caseName;
  297. }
  298. public void setCaseName(String caseName) {
  299. this.caseName = caseName;
  300. }
  301. public String getCaseDescribe() {
  302. return caseDescribe;
  303. }
  304. public void setCaseDescribe(String caseDescribe) {
  305. this.caseDescribe = caseDescribe;
  306. }
  307. public String getCaseResult() {
  308. return caseResult;
  309. }
  310. public void setCaseResult(String caseResult) {
  311. this.caseResult = caseResult;
  312. }
  313. /** 仲裁结果 */
  314. private String caseResult;
  315. public String getArbitratorName() {
  316. return arbitratorName;
  317. }
  318. public void setArbitratorName(String arbitratorName) {
  319. this.arbitratorName = arbitratorName;
  320. }
  321. /** 是否指派仲裁员 */
  322. private int pendingAppointArbotrar;
  323. public int getPendingAppointArbotrar() {
  324. return pendingAppointArbotrar;
  325. }
  326. public void setPendingAppointArbotrar(int pendingAppointArbotrar) {
  327. this.pendingAppointArbotrar = pendingAppointArbotrar;
  328. }
  329. public String getArbitratorId() {
  330. return arbitratorId;
  331. }
  332. public void setArbitratorId(String arbitratorId) {
  333. this.arbitratorId = arbitratorId;
  334. }
  335. /** 案件关联人信息 */
  336. private List<CaseAffiliate> caseAffiliates;
  337. /** 案件仲裁员 */
  338. private List<Arbitrator> arbitrators;
  339. private List<Integer> caseStatusList;
  340. private List<Integer> annexTypeList;
  341. private Integer annexType;
  342. public Integer getAnnexType() {
  343. return annexType;
  344. }
  345. public void setAnnexType(Integer annexType) {
  346. this.annexType = annexType;
  347. }
  348. public List<Integer> getAnnexTypeList() {
  349. return annexTypeList;
  350. }
  351. public void setAnnexTypeList(List<Integer> annexTypeList) {
  352. this.annexTypeList = annexTypeList;
  353. }
  354. /**
  355. * 案件附件列表
  356. */
  357. private List<CaseAttach> caseAttachList;
  358. public List<CaseAttach> getCaseAttachList() {
  359. return caseAttachList;
  360. }
  361. public void setCaseAttachList(List<CaseAttach> caseAttachList) {
  362. this.caseAttachList = caseAttachList;
  363. }
  364. public List<Integer> getCaseStatusList() {
  365. return caseStatusList;
  366. }
  367. public void setCaseStatusList(List<Integer> caseStatusList) {
  368. this.caseStatusList = caseStatusList;
  369. }
  370. /** 仲裁记录 */
  371. private ArbitrateRecord arbitrateRecord;
  372. public ArbitrateRecord getArbitrateRecord() {
  373. return arbitrateRecord;
  374. }
  375. public void setArbitrateRecord(ArbitrateRecord arbitrateRecord) {
  376. this.arbitrateRecord = arbitrateRecord;
  377. }
  378. public List<Arbitrator> getArbitrators() {
  379. return arbitrators;
  380. }
  381. public void setArbitrators(List<Arbitrator> arbitrators) {
  382. this.arbitrators = arbitrators;
  383. }
  384. /** 身份类型 */
  385. // @Excel(name = "身份类型")
  386. private int identityType;
  387. /**
  388. * 申请人主体信息
  389. */
  390. /** 姓名 */
  391. @Excel(name = "申请人主体信息-申请人(机构)",width = 26)
  392. private String name;
  393. /**
  394. * 申请人主体信息-申请人(机构)id
  395. */
  396. private String nameId;
  397. /** 身份证号 */
  398. @Excel(name = "申请人主体信息-代码",width = 26)
  399. private String identityNum;
  400. /** 联系电话 */
  401. @Excel(name = "申请人主体信息-联系电话",width = 26)
  402. private String contactTelphone;
  403. /** 联系地址 */
  404. @Excel(name = "申请人主体信息-联系地址",width = 26)
  405. private String contactAddress;
  406. /** 单位电话 */
  407. @Excel(name = "申请人主体信息-单位电话",width = 26)
  408. private String workTelphone;
  409. /** 单位地址 */
  410. @Excel(name = "申请人主体信息-单位地址",width = 26)
  411. private String workAddress;
  412. /** 代理人姓名 */
  413. @Excel(name = "申请人主体信息-代理人姓名",width = 26)
  414. private String nameAgent;
  415. /** 身份证号 */
  416. @Excel(name = "申请人主体信息-代理人身份证号",width = 26)
  417. private String identityNumAgent;
  418. /** 联系电话 */
  419. @Excel(name = "申请人主体信息-代理人联系电话",width = 26)
  420. private String contactTelphoneAgent;
  421. /** 联系地址 */
  422. @Excel(name = "申请人主体信息-代理人联系地址",width = 26)
  423. private String contactAddressAgent;
  424. /**
  425. * 被申请人主体信息
  426. */
  427. /** 姓名 */
  428. @Excel(name = "被申请人主体信息-申请人姓名",width = 26)
  429. private String debtorName;
  430. /** 身份证号 */
  431. @Excel(name = "被申请人主体信息-身份证号",width = 26)
  432. private String debtorIdentityNum;
  433. /** 联系电话 */
  434. @Excel(name = "被申请人主体信息-联系电话",width = 26)
  435. private String debtorContactTelphone;
  436. /** 联系地址 */
  437. @Excel(name = "被申请人主体信息-联系地址",width = 26)
  438. private String debtorContactAddress;
  439. /** 单位电话 */
  440. @Excel(name = "被申请人主体信息-单位电话",width = 26)
  441. private String debtorWorkTelphone;
  442. /** 单位地址 */
  443. @Excel(name = "被申请人主体信息-单位地址",width = 26)
  444. private String debtorWorkAddress;
  445. /** 代理人姓名 */
  446. @Excel(name = "被申请人主体信息-代理人姓名",width = 26)
  447. private String debtorNameAgent;
  448. /** 身份证号 */
  449. @Excel(name = "被申请人主体信息-代理人身份证号",width = 26)
  450. private String debtorIdentityNumAgent;
  451. /** 联系电话 */
  452. @Excel(name = "被申请人主体信息-代理人联系电话",width = 26)
  453. private String debtorContactTelphoneAgent;
  454. /** 联系地址 */
  455. @Excel(name = "被申请人主体信息-代理人联系地址",width = 26)
  456. private String debtorContactAddressAgent;
  457. public int getIdentityType() {
  458. return identityType;
  459. }
  460. public void setIdentityType(int identityType) {
  461. this.identityType = identityType;
  462. }
  463. public String getName() {
  464. return name;
  465. }
  466. public void setName(String name) {
  467. this.name = name;
  468. }
  469. public String getNameId() {
  470. return nameId;
  471. }
  472. public void setNameId(String nameId) {
  473. this.nameId = nameId;
  474. }
  475. public String getIdentityNum() {
  476. return identityNum;
  477. }
  478. public void setIdentityNum(String identityNum) {
  479. this.identityNum = identityNum;
  480. }
  481. public String getWorkTelphone() {
  482. return workTelphone;
  483. }
  484. public void setWorkTelphone(String workTelphone) {
  485. this.workTelphone = workTelphone;
  486. }
  487. public String getContactTelphone() {
  488. return contactTelphone;
  489. }
  490. public void setContactTelphone(String contactTelphone) {
  491. this.contactTelphone = contactTelphone;
  492. }
  493. public String getContactAddress() {
  494. return contactAddress;
  495. }
  496. public void setContactAddress(String contactAddress) {
  497. this.contactAddress = contactAddress;
  498. }
  499. public String getWorkAddress() {
  500. return workAddress;
  501. }
  502. public void setWorkAddress(String workAddress) {
  503. this.workAddress = workAddress;
  504. }
  505. public String getNameAgent() {
  506. return nameAgent;
  507. }
  508. public void setNameAgent(String nameAgent) {
  509. this.nameAgent = nameAgent;
  510. }
  511. public String getIdentityNumAgent() {
  512. return identityNumAgent;
  513. }
  514. public void setIdentityNumAgent(String identityNumAgent) {
  515. this.identityNumAgent = identityNumAgent;
  516. }
  517. public String getContactTelphoneAgent() {
  518. return contactTelphoneAgent;
  519. }
  520. public void setContactTelphoneAgent(String contactTelphoneAgent) {
  521. this.contactTelphoneAgent = contactTelphoneAgent;
  522. }
  523. public String getContactAddressAgent() {
  524. return contactAddressAgent;
  525. }
  526. public void setContactAddressAgent(String contactAddressAgent) {
  527. this.contactAddressAgent = contactAddressAgent;
  528. }
  529. public String getDebtorName() {
  530. return debtorName;
  531. }
  532. public void setDebtorName(String debtorName) {
  533. this.debtorName = debtorName;
  534. }
  535. public String getDebtorIdentityNum() {
  536. return debtorIdentityNum;
  537. }
  538. public void setDebtorIdentityNum(String debtorIdentityNum) {
  539. this.debtorIdentityNum = debtorIdentityNum;
  540. }
  541. public String getDebtorContactTelphone() {
  542. return debtorContactTelphone;
  543. }
  544. public void setDebtorContactTelphone(String debtorContactTelphone) {
  545. this.debtorContactTelphone = debtorContactTelphone;
  546. }
  547. public String getDebtorContactAddress() {
  548. return debtorContactAddress;
  549. }
  550. public void setDebtorContactAddress(String debtorContactAddress) {
  551. this.debtorContactAddress = debtorContactAddress;
  552. }
  553. public String getDebtorWorkTelphone() {
  554. return debtorWorkTelphone;
  555. }
  556. public void setDebtorWorkTelphone(String debtorWorkTelphone) {
  557. this.debtorWorkTelphone = debtorWorkTelphone;
  558. }
  559. public String getDebtorWorkAddress() {
  560. return debtorWorkAddress;
  561. }
  562. public void setDebtorWorkAddress(String debtorWorkAddress) {
  563. this.debtorWorkAddress = debtorWorkAddress;
  564. }
  565. public String getDebtorNameAgent() {
  566. return debtorNameAgent;
  567. }
  568. public void setDebtorNameAgent(String debtorNameAgent) {
  569. this.debtorNameAgent = debtorNameAgent;
  570. }
  571. public String getDebtorIdentityNumAgent() {
  572. return debtorIdentityNumAgent;
  573. }
  574. public void setDebtorIdentityNumAgent(String debtorIdentityNumAgent) {
  575. this.debtorIdentityNumAgent = debtorIdentityNumAgent;
  576. }
  577. public String getDebtorContactTelphoneAgent() {
  578. return debtorContactTelphoneAgent;
  579. }
  580. public void setDebtorContactTelphoneAgent(String debtorContactTelphoneAgent) {
  581. this.debtorContactTelphoneAgent = debtorContactTelphoneAgent;
  582. }
  583. public String getDebtorContactAddressAgent() {
  584. return debtorContactAddressAgent;
  585. }
  586. public void setDebtorContactAddressAgent(String debtorContactAddressAgent) {
  587. this.debtorContactAddressAgent = debtorContactAddressAgent;
  588. }
  589. public Long getId() {
  590. return id;
  591. }
  592. public void setId(Long id) {
  593. this.id = id;
  594. }
  595. public String getCaseNum() {
  596. return caseNum;
  597. }
  598. public void setCaseNum(String caseNum) {
  599. this.caseNum = caseNum;
  600. }
  601. public String getContractNumber() {
  602. return contractNumber;
  603. }
  604. public void setContractNumber(String contractNumber) {
  605. this.contractNumber = contractNumber;
  606. }
  607. public BigDecimal getCaseSubjectAmount() {
  608. return caseSubjectAmount;
  609. }
  610. public void setCaseSubjectAmount(BigDecimal caseSubjectAmount) {
  611. this.caseSubjectAmount = caseSubjectAmount;
  612. }
  613. public Date getRegisterDate() {
  614. return registerDate;
  615. }
  616. public void setRegisterDate(Date registerDate) {
  617. this.registerDate = registerDate;
  618. }
  619. public Date getHearDate() {
  620. return hearDate;
  621. }
  622. public void setHearDate(Date hearDate) {
  623. this.hearDate = hearDate;
  624. }
  625. public String getArbitratClaims() {
  626. return arbitratClaims;
  627. }
  628. public void setArbitratClaims(String arbitratClaims) {
  629. this.arbitratClaims = arbitratClaims;
  630. }
  631. public Date getLoanStartDate() {
  632. return loanStartDate;
  633. }
  634. public void setLoanStartDate(Date loanStartDate) {
  635. this.loanStartDate = loanStartDate;
  636. }
  637. public Date getLoanEndDate() {
  638. return loanEndDate;
  639. }
  640. public void setLoanEndDate(Date loanEndDate) {
  641. this.loanEndDate = loanEndDate;
  642. }
  643. public BigDecimal getClaimPrinciOwed() {
  644. return claimPrinciOwed;
  645. }
  646. public void setClaimPrinciOwed(BigDecimal claimPrinciOwed) {
  647. this.claimPrinciOwed = claimPrinciOwed;
  648. }
  649. public BigDecimal getClaimInterestOwed() {
  650. return claimInterestOwed;
  651. }
  652. public void setClaimInterestOwed(BigDecimal claimInterestOwed) {
  653. this.claimInterestOwed = claimInterestOwed;
  654. }
  655. public BigDecimal getClaimLiquidDamag() {
  656. return claimLiquidDamag;
  657. }
  658. public void setClaimLiquidDamag(BigDecimal claimLiquidDamag) {
  659. this.claimLiquidDamag = claimLiquidDamag;
  660. }
  661. public BigDecimal getFeePayable() {
  662. return feePayable;
  663. }
  664. public void setFeePayable(BigDecimal feePayable) {
  665. this.feePayable = feePayable;
  666. }
  667. public Date getBeginVideoDate() {
  668. return beginVideoDate;
  669. }
  670. public void setBeginVideoDate(Date beginVideoDate) {
  671. this.beginVideoDate = beginVideoDate;
  672. }
  673. public String getOnlineVideoPerson() {
  674. return onlineVideoPerson;
  675. }
  676. public void setOnlineVideoPerson(String onlineVideoPerson) {
  677. this.onlineVideoPerson = onlineVideoPerson;
  678. }
  679. public List<CaseAffiliate> getCaseAffiliates() {
  680. return caseAffiliates;
  681. }
  682. public void setCaseAffiliates(List<CaseAffiliate> caseAffiliates) {
  683. this.caseAffiliates = caseAffiliates;
  684. }
  685. }