| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411 |
- package com.ruoyi.wisdomarbitrate.domain;
-
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- import lombok.Data;
-
- import com.ruoyi.wisdomarbitrate.domain.vo.ColumnValue;
-
- import java.math.BigDecimal;
- import java.util.Date;
- import java.util.List;
- @Data
- public class CaseApplication extends BaseEntity {
- private static final long serialVersionUID = 1L;
- /**
- * 查询案件时区分是否待办案件,0待办案件,1已办案件
- */
- private String selectCaseStatus;
-
- /** ID */
- private Long id;
- /** 案件名称 */
- @Excel(name = "案件名称")
- private String caseName;
- /** 案件编号 */
- // @Excel(name = "案件编号")
- private String caseNum;
- /** 案件标的 */
- @Excel(name = "案件标的")
- private BigDecimal caseSubjectAmount;
- /**
- * 模板id
- */
- private Long templateId;
-
-
-
- /** 立案日期 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private Date registerDate;
- /** 仲裁方式 */
- private Integer arbitratMethod;
- /**
- * 是否导入,0手动录入,1导入,默认0
- */
- private Integer importFlag;
- /** 仲裁方式名称 */
- private String arbitratMethodName;
-
- /** 案件状态 */
- private Integer caseStatus;
-
- /** 申请人是否书面审理 */
- private Integer applicantIsWrittenHear;
-
- /** 被申请人是否书面审理 */
- private Integer respondentIsWrittenHear;
-
-
- /** 案件申请表ID */
- private Long caseAppliId;
-
- /** 开庭日期 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private Date hearDate;
-
- /** 借款开始日期 */
- @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;
- /** 申请人请求仲裁庭裁决 */
- @Excel(name = "申请人请求仲裁庭裁决",width = 36)
- private String requestRule;
-
- /** 是否财产保全申请 */
- @Excel(name = "是否财产保全申请",width = 26,combo= {"是","否"},readConverterExp = "0=否,1=是")
- private Integer properPreser;
- /** 申请人仲裁请求及事实和理由 */
- @Excel(name = "申请人仲裁请求及事实和理由",width = 36)
- private String arbitratClaims;
- /** 仲裁应缴费用 */
- private BigDecimal feePayable;
-
- /** 开始在线视频时间 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private Date beginVideoDate;
- /** 在线视频人员 */
- private String onlineVideoPerson;
-
- /** 仲裁员id */
- private String arbitratorId;
- /** 仲裁员名称 */
- private String arbitratorName;
-
- /** 案件描述 */
- private String caseDescribe;
- /** 裁决书URL */
- private String filearbitraUrl;
-
- /** 是否同意组庭 */
- private Integer isAgreePendTral;
-
- /** 是否有异议需要举证 */
- private Integer objectionAddEviden;
- /** 是否需要开庭审理 */
- private Integer openCourtHear;
-
- /** 是否仲裁反请求 */
- private Integer adjudicaCounter;
- /**
- * 仲裁反请求原因
- */
- private String adjudicaCounterReason;
-
- /** 被申请人是否缺席 */
- private Integer isAbsence;
- /** 是否管辖异议申请 */
- private Integer objectiJuris;
- /** 被申请人质证意见 */
- private String responCrossOpin;
- /** 被申请人的答辩意见 */
- private String responDefenOpini;
- /** 申请人是否缺席 */
- private Integer appliIsAbsen;
-
- /** 申请人质证意见 */
- private String applicaCrossOpin;
-
- /** 支付状态 */
- private Integer paymentStatus;
-
- /** 支付状态描述 */
- private String paymentStatusName;
- /**
- * 支付方式code,0线上支付,1线下支付
- */
- private Integer payTypeCode;
- /**
- * 支付方式name,0线上支付,1线下支付
- */
- private String payTypeName;
-
-
- /**
- * 缴费凭证
- */
- private List<CaseAttach> payOrderList;
- // 导入校验失败信息
- private StringBuilder errorMsg;
- /**
- * 是否锁定,0-否,1-是
- */
- private Integer lockStatus;
- /** 案件状态名称 */
- private String caseStatusName;
- /** 是否同意审核 */
- private Integer agreeOrNotCheck;
- /** 申请人名称 */
- private String applicantName;
- /** 被申请人名称 */
- private String respondentName;
- /**
- * 用户身份证号
- */
- private String idCard;
- /**
- * 用户id
- */
- private String userId;
- /**
- * 登录用户用户名
- */
- private String loginUserName;
- private List<Long> deptIds;
- /**
- * 部门长状态
- */
- private List<Integer> deptHeadStatus;
- /**
- * 代理人角色有关部门
- */
- private List<Long> agentDeptIds;
- /**
- * 财务状态
- */
- private Integer financeStatus;
- /**
- * 是否是被申请人,仲裁员,部门长,财务,代理人,0-否,1-是
- */
- private Integer isOtherRole;
- /**
- * 案件日志id
- */
- private Long caseLogId;
- /** 仲裁结果 */
- private String caseResult;
- /** 是否指派仲裁员 */
- private int pendingAppointArbotrar;
- /** 案件关联人信息 */
- private List<CaseAffiliate> caseAffiliates;
-
- /** 案件仲裁员 */
- private List<Arbitrator> arbitrators;
-
- private List<Integer> caseStatusList;
-
- private List<Integer> annexTypeList;
-
- private Integer annexType;
- /**
- * 案件附件列表
- */
- private List<CaseAttach> caseAttachList;
-
- /** 仲裁记录 */
- private ArbitrateRecord arbitrateRecord;
-
- /** 身份类型 */
- // @Excel(name = "身份类型")
- private int identityType;
- /**
- * 申请人主体信息
- */
- /** 姓名 */
- @Excel(name = "申请人主体信息-申请人(机构)",width = 26)
- private String name;
- /** 身份证号 */
- @Excel(name = "申请人主体信息-代码",width = 26)
- private String identityNum;
- /** 申请人主体信息-法定代表人 */
- @Excel(name = "申请人主体信息-法定代表人",width = 26)
- private String compLegalPerson;
- /** 申请人主体信息-法定代表人 */
- @Excel(name = "申请人主体信息-法定代表人职位",width = 26)
- private String compLegalperPost;
- /**
- * 申请人主体信息-申请人(机构)id
- */
- private String nameId;
-
- /** 联系电话 */
- @Excel(name = "申请人主体信息-联系电话",width = 26)
- private String contactTelphone;
- /** 联系地址 */
- @Excel(name = "申请人主体信息-联系地址",width = 26)
- private String contactAddress;
- /** 单位电话 */
- @Excel(name = "申请人主体信息-单位电话",width = 26)
- private String workTelphone;
- /** 单位地址 */
- @Excel(name = "申请人主体信息-单位地址",width = 26)
- private String workAddress;
-
- /** 申请人住所 */
- @Excel(name = "申请人主体信息-住所",width = 26)
- private String residenAffiliAppli;
-
- /** 申请人邮箱 */
- @Excel(name = "申请人主体信息-邮箱",width = 26)
- private String email;
- /** 代理人姓名 */
- @Excel(name = "申请人主体信息-代理人姓名",width = 26)
- private String nameAgent;
- /** 身份证号 */
- @Excel(name = "申请人主体信息-代理人身份证号",width = 26)
- private String identityNumAgent;
-
- /** 联系电话 */
- @Excel(name = "申请人主体信息-代理人联系电话",width = 26)
- private String contactTelphoneAgent;
- /** 联系地址 */
- @Excel(name = "申请人主体信息-代理人联系地址",width = 26)
- private String contactAddressAgent;
- /** 申请人代理人职称 */
- @Excel(name = "申请人主体信息-代理人职称",width = 26)
- private String appliAgentTitle;
- /**
- * 被申请人主体信息
- */
- /** 姓名 */
- @Excel(name = "被申请人主体信息-申请人姓名",width = 26)
- private String debtorName;
- /** 身份证号 */
- @Excel(name = "被申请人主体信息-身份证号",width = 26)
- private String debtorIdentityNum;
- /** 被申请人主体信息-性别 */
- @Excel(name = "被申请人主体信息-性别",width = 26,combo= {"男","女"},readConverterExp = "0=男,1=女")
- private String responSex;
- /** 被申请人主体信息-出生年月日 */
- @Excel(name = "被申请人主体信息-出生年月日",width = 26)
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- private Date responBirth;
- /** 联系电话 */
- @Excel(name = "被申请人主体信息-联系电话",width = 26)
- private String debtorContactTelphone;
- /** 联系地址 */
- @Excel(name = "被申请人主体信息-联系地址",width = 26)
- private String debtorContactAddress;
- /** 被申请人住所 */
- @Excel(name = "被申请人主体信息-住所",width = 26)
- private String residenAffiliRespon;
- /** 单位电话 */
- @Excel(name = "被申请人主体信息-单位电话",width = 26)
- private String debtorWorkTelphone;
- /** 单位地址 */
- @Excel(name = "被申请人主体信息-单位地址",width = 26)
- private String debtorWorkAddress;
- /** 邮箱 */
- @Excel(name = "被申请人主体信息-邮箱",width = 26)
- private String debtorEmail;
-
- /** 代理人姓名 */
- @Excel(name = "被申请人主体信息-代理人姓名",width = 26)
- private String debtorNameAgent;
- /** 身份证号 */
- @Excel(name = "被申请人主体信息-代理人身份证号",width = 26)
- private String debtorIdentityNumAgent;
- /** 联系电话 */
- @Excel(name = "被申请人主体信息-代理人联系电话",width = 26)
- private String debtorContactTelphoneAgent;
- /** 联系地址 */
- @Excel(name = "被申请人主体信息-代理人联系地址",width = 26)
- private String debtorContactAddressAgent;
- /**
- * 申请机构id
- */
- private String applicationOrganId;
- /**
- * 版本号
- */
- private Integer version;
- /**
- * 修改案件的提交状态,0-未提交,1-已提交,2-同意,3-拒绝,4-撤销
- */
- private Integer updateSubmitStatus;
- /** 合同名称 */
- private String contractName;
- /**
- * 事实和理由
- */
- private String facts;
- /**
- * 合同甲方
- */
- private String partyA;
- /**
- * 利率
- */
- private String interestRate;
- /**
- * 待还金额
- */
- private String outstandingMoney;
- /**
- * 调解达成协议内容
- */
- private String mediationAgreement;
- /**
- * 金融消费纠纷基本情况
- */
- private String disputes;
- /**
- * 贷款类型
- */
- private String loanType;
- /**
- * 贷款期限
- */
- private String loanTerm;
- /**
- * 本案争议焦点
- */
- private String caseFocus;
- /**
- * 本案事实
- */
- private String caseFacts;
- /**
- * 被申请人对上述材料的质证意见
- */
- private String respondentOpinion;
- /**
- * 申请人对上述材料的质证意见
- */
- private String applicantOpinion;
- /**
- * 批号
- */
- private String batchNumber;
- /**
- * 自定义字段
- */
- private List<ColumnValue> columnValues;
- }
|