| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445 |
- package com.ruoyi.wisdomarbitrate.domain;
-
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.annotation.Excels;
- import com.ruoyi.common.core.domain.BaseEntity;
- import java.math.BigDecimal;
- import java.util.Date;
- import java.util.List;
-
- public class CaseApplication extends BaseEntity {
- private static final long serialVersionUID = 1L;
-
- /** ID */
- private Long id;
- /** 案件编号 */
- @Excel(name = "案件编号")
- private String caseNum;
- /** 案件标的 */
- @Excel(name = "案件标的")
- private BigDecimal caseSubjectAmount;
-
-
- /** 立案日期 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private Date registerDate;
- /** 仲裁方式 */
- private String arbitratMethod;
- /** 案件状态 */
- private int caseStatus;
- /** 开庭日期 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private Date hearDate;
- /** 申请人仲裁诉求 */
- private String arbitratClaims;
- /** 借款开始日期 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- @Excel(name = "借款开始日期")
- private Date loanStartDate;
- /** 借款结束日期 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- @Excel(name = "借款结束日期")
- private Date loanEndDate;
- /** 合同编号 */
- @Excel(name = "合同编号")
- private String contractNumber;
- /** 申请人主张欠本金 */
- @Excel(name = "申请人主张欠本金")
- private BigDecimal claimPrinciOwed;
- /** 申请人主张欠利息 */
- @Excel(name = "申请人主张欠利息")
- private BigDecimal claimInterestOwed;
- /** 申请人主张违约金 */
- @Excel(name = "申请人主张违约金")
- private BigDecimal claimLiquidDamag;
- /** 仲裁应缴费用 */
- private BigDecimal feePayable;
- /** 仲裁实缴费用 */
- private BigDecimal paidExpenses;
- /** 开始在线视频时间 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private Date beginVideoDate;
- /** 在线视频人员 */
- private String onlineVideoPerson;
-
- /** 仲裁员id */
- private String arbitratorId;
- /** 仲裁员名称 */
- private String arbitratorName;
-
- /** 案件名称 */
- private String caseName;
-
- /** 案件描述 */
- private String caseDescribe;
-
- /** 是否同意组庭 */
- private int isAgreePendTral;
-
- public int getIsAgreePendTral() {
- return isAgreePendTral;
- }
-
- public void setIsAgreePendTral(int isAgreePendTral) {
- this.isAgreePendTral = isAgreePendTral;
- }
-
- public String getCaseName() {
- return caseName;
- }
-
- public void setCaseName(String caseName) {
- this.caseName = caseName;
- }
-
- public String getCaseDescribe() {
- return caseDescribe;
- }
-
- public void setCaseDescribe(String caseDescribe) {
- this.caseDescribe = caseDescribe;
- }
-
- public String getCaseResult() {
- return caseResult;
- }
-
- public void setCaseResult(String caseResult) {
- this.caseResult = caseResult;
- }
-
- /** 仲裁结果 */
- private String caseResult;
-
-
-
- public String getArbitratorName() {
- return arbitratorName;
- }
-
- public void setArbitratorName(String arbitratorName) {
- this.arbitratorName = arbitratorName;
- }
-
- /** 是否指派仲裁员 */
- private int pendingAppointArbotrar;
-
- public int getPendingAppointArbotrar() {
- return pendingAppointArbotrar;
- }
-
- public void setPendingAppointArbotrar(int pendingAppointArbotrar) {
- this.pendingAppointArbotrar = pendingAppointArbotrar;
- }
-
- public String getArbitratorId() {
- return arbitratorId;
- }
-
- public void setArbitratorId(String arbitratorId) {
- this.arbitratorId = arbitratorId;
- }
-
-
-
- /** 案件关联人信息 */
- private List<CaseAffiliate> caseAffiliates;
-
- /** 案件仲裁员 */
- private List<Arbitrator> arbitrators;
-
- public List<Arbitrator> getArbitrators() {
- return arbitrators;
- }
-
- public void setArbitrators(List<Arbitrator> arbitrators) {
- this.arbitrators = arbitrators;
- }
-
- /** 身份类型 */
- @Excel(name = "身份类型")
- private int identityType;
- /** 姓名 */
- @Excel(name = "姓名")
- private String name;
- /** 身份证号 */
- @Excel(name = "身份证号")
- private String identityNum;
- /** 单位电话 */
- @Excel(name = "单位电话")
- private String workTelphone;
- /** 联系电话 */
- @Excel(name = "联系电话")
- private String contactTelphone;
- /** 联系地址 */
- @Excel(name = "联系地址")
- private String contactAddress;
- /** 单位地址 */
- @Excel(name = "单位地址")
- private String workAddress;
-
- /** 代理人姓名 */
- @Excel(name = "代理人姓名")
- private String nameAgent;
- /** 身份证号 */
- @Excel(name = "代理人身份证号")
- private String identityNumAgent;
- /** 联系电话 */
- @Excel(name = "代理人联系电话")
- private String contactTelphoneAgent;
-
- public int getIdentityType() {
- return identityType;
- }
-
- public void setIdentityType(int identityType) {
- this.identityType = identityType;
- }
-
- public String getName() {
- return name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
-
- public String getIdentityNum() {
- return identityNum;
- }
-
- public void setIdentityNum(String identityNum) {
- this.identityNum = identityNum;
- }
-
- public String getWorkTelphone() {
- return workTelphone;
- }
-
- public void setWorkTelphone(String workTelphone) {
- this.workTelphone = workTelphone;
- }
-
- public String getContactTelphone() {
- return contactTelphone;
- }
-
- public void setContactTelphone(String contactTelphone) {
- this.contactTelphone = contactTelphone;
- }
-
- public String getContactAddress() {
- return contactAddress;
- }
-
- public void setContactAddress(String contactAddress) {
- this.contactAddress = contactAddress;
- }
-
- public String getWorkAddress() {
- return workAddress;
- }
-
- public void setWorkAddress(String workAddress) {
- this.workAddress = workAddress;
- }
-
- public String getNameAgent() {
- return nameAgent;
- }
-
- public void setNameAgent(String nameAgent) {
- this.nameAgent = nameAgent;
- }
-
- public String getIdentityNumAgent() {
- return identityNumAgent;
- }
-
- public void setIdentityNumAgent(String identityNumAgent) {
- this.identityNumAgent = identityNumAgent;
- }
-
- public String getContactTelphoneAgent() {
- return contactTelphoneAgent;
- }
-
- public void setContactTelphoneAgent(String contactTelphoneAgent) {
- this.contactTelphoneAgent = contactTelphoneAgent;
- }
-
- public String getContactAddressAgent() {
- return contactAddressAgent;
- }
-
- public void setContactAddressAgent(String contactAddressAgent) {
- this.contactAddressAgent = contactAddressAgent;
- }
-
- /** 联系地址 */
- @Excel(name = "代理人联系地址")
- private String contactAddressAgent;
-
-
-
-
- public Long getId() {
- return id;
- }
-
- public void setId(Long id) {
- this.id = id;
- }
-
- public String getCaseNum() {
- return caseNum;
- }
-
- public void setCaseNum(String caseNum) {
- this.caseNum = caseNum;
- }
-
- public String getContractNumber() {
- return contractNumber;
- }
-
- public void setContractNumber(String contractNumber) {
- this.contractNumber = contractNumber;
- }
-
- public BigDecimal getCaseSubjectAmount() {
- return caseSubjectAmount;
- }
-
- public void setCaseSubjectAmount(BigDecimal caseSubjectAmount) {
- this.caseSubjectAmount = caseSubjectAmount;
- }
-
- public Date getRegisterDate() {
- return registerDate;
- }
-
- public void setRegisterDate(Date registerDate) {
- this.registerDate = registerDate;
- }
-
- public String getArbitratMethod() {
- return arbitratMethod;
- }
-
- public void setArbitratMethod(String arbitratMethod) {
- this.arbitratMethod = arbitratMethod;
- }
-
- public int getCaseStatus() {
- return caseStatus;
- }
-
- public void setCaseStatus(int caseStatus) {
- this.caseStatus = caseStatus;
- }
-
- public Date getHearDate() {
- return hearDate;
- }
-
- public void setHearDate(Date hearDate) {
- this.hearDate = hearDate;
- }
-
- public String getArbitratClaims() {
- return arbitratClaims;
- }
-
- public void setArbitratClaims(String arbitratClaims) {
- this.arbitratClaims = arbitratClaims;
- }
-
- public Date getLoanStartDate() {
- return loanStartDate;
- }
-
- public void setLoanStartDate(Date loanStartDate) {
- this.loanStartDate = loanStartDate;
- }
-
- public Date getLoanEndDate() {
- return loanEndDate;
- }
-
- public void setLoanEndDate(Date loanEndDate) {
- this.loanEndDate = loanEndDate;
- }
-
- public BigDecimal getClaimPrinciOwed() {
- return claimPrinciOwed;
- }
-
- public void setClaimPrinciOwed(BigDecimal claimPrinciOwed) {
- this.claimPrinciOwed = claimPrinciOwed;
- }
-
- public BigDecimal getClaimInterestOwed() {
- return claimInterestOwed;
- }
-
- public void setClaimInterestOwed(BigDecimal claimInterestOwed) {
- this.claimInterestOwed = claimInterestOwed;
- }
-
- public BigDecimal getClaimLiquidDamag() {
- return claimLiquidDamag;
- }
-
- public void setClaimLiquidDamag(BigDecimal claimLiquidDamag) {
- this.claimLiquidDamag = claimLiquidDamag;
- }
-
- public BigDecimal getFeePayable() {
- return feePayable;
- }
-
- public void setFeePayable(BigDecimal feePayable) {
- this.feePayable = feePayable;
- }
-
- public BigDecimal getPaidExpenses() {
- return paidExpenses;
- }
-
- public void setPaidExpenses(BigDecimal paidExpenses) {
- this.paidExpenses = paidExpenses;
- }
-
- public Date getBeginVideoDate() {
- return beginVideoDate;
- }
-
- public void setBeginVideoDate(Date beginVideoDate) {
- this.beginVideoDate = beginVideoDate;
- }
-
- public String getOnlineVideoPerson() {
- return onlineVideoPerson;
- }
-
- public void setOnlineVideoPerson(String onlineVideoPerson) {
- this.onlineVideoPerson = onlineVideoPerson;
- }
-
- public List<CaseAffiliate> getCaseAffiliates() {
- return caseAffiliates;
- }
-
- public void setCaseAffiliates(List<CaseAffiliate> caseAffiliates) {
- this.caseAffiliates = caseAffiliates;
- }
-
-
-
-
-
-
-
- }
|