智能仲裁后端服务

CaseApplication.java 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445
  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.annotation.Excels;
  5. import com.ruoyi.common.core.domain.BaseEntity;
  6. import java.math.BigDecimal;
  7. import java.util.Date;
  8. import java.util.List;
  9. public class CaseApplication extends BaseEntity {
  10. private static final long serialVersionUID = 1L;
  11. /** ID */
  12. private Long id;
  13. /** 案件编号 */
  14. @Excel(name = "案件编号")
  15. private String caseNum;
  16. /** 案件标的 */
  17. @Excel(name = "案件标的")
  18. private BigDecimal caseSubjectAmount;
  19. /** 立案日期 */
  20. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  21. private Date registerDate;
  22. /** 仲裁方式 */
  23. private String arbitratMethod;
  24. /** 案件状态 */
  25. private int caseStatus;
  26. /** 开庭日期 */
  27. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  28. private Date hearDate;
  29. /** 申请人仲裁诉求 */
  30. private String arbitratClaims;
  31. /** 借款开始日期 */
  32. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  33. @Excel(name = "借款开始日期")
  34. private Date loanStartDate;
  35. /** 借款结束日期 */
  36. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  37. @Excel(name = "借款结束日期")
  38. private Date loanEndDate;
  39. /** 合同编号 */
  40. @Excel(name = "合同编号")
  41. private String contractNumber;
  42. /** 申请人主张欠本金 */
  43. @Excel(name = "申请人主张欠本金")
  44. private BigDecimal claimPrinciOwed;
  45. /** 申请人主张欠利息 */
  46. @Excel(name = "申请人主张欠利息")
  47. private BigDecimal claimInterestOwed;
  48. /** 申请人主张违约金 */
  49. @Excel(name = "申请人主张违约金")
  50. private BigDecimal claimLiquidDamag;
  51. /** 仲裁应缴费用 */
  52. private BigDecimal feePayable;
  53. /** 仲裁实缴费用 */
  54. private BigDecimal paidExpenses;
  55. /** 开始在线视频时间 */
  56. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  57. private Date beginVideoDate;
  58. /** 在线视频人员 */
  59. private String onlineVideoPerson;
  60. /** 仲裁员id */
  61. private String arbitratorId;
  62. /** 仲裁员名称 */
  63. private String arbitratorName;
  64. /** 案件名称 */
  65. private String caseName;
  66. /** 案件描述 */
  67. private String caseDescribe;
  68. /** 是否同意组庭 */
  69. private int isAgreePendTral;
  70. public int getIsAgreePendTral() {
  71. return isAgreePendTral;
  72. }
  73. public void setIsAgreePendTral(int isAgreePendTral) {
  74. this.isAgreePendTral = isAgreePendTral;
  75. }
  76. public String getCaseName() {
  77. return caseName;
  78. }
  79. public void setCaseName(String caseName) {
  80. this.caseName = caseName;
  81. }
  82. public String getCaseDescribe() {
  83. return caseDescribe;
  84. }
  85. public void setCaseDescribe(String caseDescribe) {
  86. this.caseDescribe = caseDescribe;
  87. }
  88. public String getCaseResult() {
  89. return caseResult;
  90. }
  91. public void setCaseResult(String caseResult) {
  92. this.caseResult = caseResult;
  93. }
  94. /** 仲裁结果 */
  95. private String caseResult;
  96. public String getArbitratorName() {
  97. return arbitratorName;
  98. }
  99. public void setArbitratorName(String arbitratorName) {
  100. this.arbitratorName = arbitratorName;
  101. }
  102. /** 是否指派仲裁员 */
  103. private int pendingAppointArbotrar;
  104. public int getPendingAppointArbotrar() {
  105. return pendingAppointArbotrar;
  106. }
  107. public void setPendingAppointArbotrar(int pendingAppointArbotrar) {
  108. this.pendingAppointArbotrar = pendingAppointArbotrar;
  109. }
  110. public String getArbitratorId() {
  111. return arbitratorId;
  112. }
  113. public void setArbitratorId(String arbitratorId) {
  114. this.arbitratorId = arbitratorId;
  115. }
  116. /** 案件关联人信息 */
  117. private List<CaseAffiliate> caseAffiliates;
  118. /** 案件仲裁员 */
  119. private List<Arbitrator> arbitrators;
  120. public List<Arbitrator> getArbitrators() {
  121. return arbitrators;
  122. }
  123. public void setArbitrators(List<Arbitrator> arbitrators) {
  124. this.arbitrators = arbitrators;
  125. }
  126. /** 身份类型 */
  127. @Excel(name = "身份类型")
  128. private int identityType;
  129. /** 姓名 */
  130. @Excel(name = "姓名")
  131. private String name;
  132. /** 身份证号 */
  133. @Excel(name = "身份证号")
  134. private String identityNum;
  135. /** 单位电话 */
  136. @Excel(name = "单位电话")
  137. private String workTelphone;
  138. /** 联系电话 */
  139. @Excel(name = "联系电话")
  140. private String contactTelphone;
  141. /** 联系地址 */
  142. @Excel(name = "联系地址")
  143. private String contactAddress;
  144. /** 单位地址 */
  145. @Excel(name = "单位地址")
  146. private String workAddress;
  147. /** 代理人姓名 */
  148. @Excel(name = "代理人姓名")
  149. private String nameAgent;
  150. /** 身份证号 */
  151. @Excel(name = "代理人身份证号")
  152. private String identityNumAgent;
  153. /** 联系电话 */
  154. @Excel(name = "代理人联系电话")
  155. private String contactTelphoneAgent;
  156. public int getIdentityType() {
  157. return identityType;
  158. }
  159. public void setIdentityType(int identityType) {
  160. this.identityType = identityType;
  161. }
  162. public String getName() {
  163. return name;
  164. }
  165. public void setName(String name) {
  166. this.name = name;
  167. }
  168. public String getIdentityNum() {
  169. return identityNum;
  170. }
  171. public void setIdentityNum(String identityNum) {
  172. this.identityNum = identityNum;
  173. }
  174. public String getWorkTelphone() {
  175. return workTelphone;
  176. }
  177. public void setWorkTelphone(String workTelphone) {
  178. this.workTelphone = workTelphone;
  179. }
  180. public String getContactTelphone() {
  181. return contactTelphone;
  182. }
  183. public void setContactTelphone(String contactTelphone) {
  184. this.contactTelphone = contactTelphone;
  185. }
  186. public String getContactAddress() {
  187. return contactAddress;
  188. }
  189. public void setContactAddress(String contactAddress) {
  190. this.contactAddress = contactAddress;
  191. }
  192. public String getWorkAddress() {
  193. return workAddress;
  194. }
  195. public void setWorkAddress(String workAddress) {
  196. this.workAddress = workAddress;
  197. }
  198. public String getNameAgent() {
  199. return nameAgent;
  200. }
  201. public void setNameAgent(String nameAgent) {
  202. this.nameAgent = nameAgent;
  203. }
  204. public String getIdentityNumAgent() {
  205. return identityNumAgent;
  206. }
  207. public void setIdentityNumAgent(String identityNumAgent) {
  208. this.identityNumAgent = identityNumAgent;
  209. }
  210. public String getContactTelphoneAgent() {
  211. return contactTelphoneAgent;
  212. }
  213. public void setContactTelphoneAgent(String contactTelphoneAgent) {
  214. this.contactTelphoneAgent = contactTelphoneAgent;
  215. }
  216. public String getContactAddressAgent() {
  217. return contactAddressAgent;
  218. }
  219. public void setContactAddressAgent(String contactAddressAgent) {
  220. this.contactAddressAgent = contactAddressAgent;
  221. }
  222. /** 联系地址 */
  223. @Excel(name = "代理人联系地址")
  224. private String contactAddressAgent;
  225. public Long getId() {
  226. return id;
  227. }
  228. public void setId(Long id) {
  229. this.id = id;
  230. }
  231. public String getCaseNum() {
  232. return caseNum;
  233. }
  234. public void setCaseNum(String caseNum) {
  235. this.caseNum = caseNum;
  236. }
  237. public String getContractNumber() {
  238. return contractNumber;
  239. }
  240. public void setContractNumber(String contractNumber) {
  241. this.contractNumber = contractNumber;
  242. }
  243. public BigDecimal getCaseSubjectAmount() {
  244. return caseSubjectAmount;
  245. }
  246. public void setCaseSubjectAmount(BigDecimal caseSubjectAmount) {
  247. this.caseSubjectAmount = caseSubjectAmount;
  248. }
  249. public Date getRegisterDate() {
  250. return registerDate;
  251. }
  252. public void setRegisterDate(Date registerDate) {
  253. this.registerDate = registerDate;
  254. }
  255. public String getArbitratMethod() {
  256. return arbitratMethod;
  257. }
  258. public void setArbitratMethod(String arbitratMethod) {
  259. this.arbitratMethod = arbitratMethod;
  260. }
  261. public int getCaseStatus() {
  262. return caseStatus;
  263. }
  264. public void setCaseStatus(int caseStatus) {
  265. this.caseStatus = caseStatus;
  266. }
  267. public Date getHearDate() {
  268. return hearDate;
  269. }
  270. public void setHearDate(Date hearDate) {
  271. this.hearDate = hearDate;
  272. }
  273. public String getArbitratClaims() {
  274. return arbitratClaims;
  275. }
  276. public void setArbitratClaims(String arbitratClaims) {
  277. this.arbitratClaims = arbitratClaims;
  278. }
  279. public Date getLoanStartDate() {
  280. return loanStartDate;
  281. }
  282. public void setLoanStartDate(Date loanStartDate) {
  283. this.loanStartDate = loanStartDate;
  284. }
  285. public Date getLoanEndDate() {
  286. return loanEndDate;
  287. }
  288. public void setLoanEndDate(Date loanEndDate) {
  289. this.loanEndDate = loanEndDate;
  290. }
  291. public BigDecimal getClaimPrinciOwed() {
  292. return claimPrinciOwed;
  293. }
  294. public void setClaimPrinciOwed(BigDecimal claimPrinciOwed) {
  295. this.claimPrinciOwed = claimPrinciOwed;
  296. }
  297. public BigDecimal getClaimInterestOwed() {
  298. return claimInterestOwed;
  299. }
  300. public void setClaimInterestOwed(BigDecimal claimInterestOwed) {
  301. this.claimInterestOwed = claimInterestOwed;
  302. }
  303. public BigDecimal getClaimLiquidDamag() {
  304. return claimLiquidDamag;
  305. }
  306. public void setClaimLiquidDamag(BigDecimal claimLiquidDamag) {
  307. this.claimLiquidDamag = claimLiquidDamag;
  308. }
  309. public BigDecimal getFeePayable() {
  310. return feePayable;
  311. }
  312. public void setFeePayable(BigDecimal feePayable) {
  313. this.feePayable = feePayable;
  314. }
  315. public BigDecimal getPaidExpenses() {
  316. return paidExpenses;
  317. }
  318. public void setPaidExpenses(BigDecimal paidExpenses) {
  319. this.paidExpenses = paidExpenses;
  320. }
  321. public Date getBeginVideoDate() {
  322. return beginVideoDate;
  323. }
  324. public void setBeginVideoDate(Date beginVideoDate) {
  325. this.beginVideoDate = beginVideoDate;
  326. }
  327. public String getOnlineVideoPerson() {
  328. return onlineVideoPerson;
  329. }
  330. public void setOnlineVideoPerson(String onlineVideoPerson) {
  331. this.onlineVideoPerson = onlineVideoPerson;
  332. }
  333. public List<CaseAffiliate> getCaseAffiliates() {
  334. return caseAffiliates;
  335. }
  336. public void setCaseAffiliates(List<CaseAffiliate> caseAffiliates) {
  337. this.caseAffiliates = caseAffiliates;
  338. }
  339. }