| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- package com.loan.system.domain.dto;
- import lombok.Data;
- /**
- * 创建e签宝签署流程DTO
- */
- @Data
- public class EsignCreateFlowDTO {
-
- /**
- * 合同ID
- */
- private Long contractId;
-
- /**
- * 案件ID
- */
- private Long caseId;
-
- /**
- * 合同文档URL(需要签署的合同文件地址)或文件ID(fileId)
- */
- private String documentUrl;
-
- /**
- * e签宝文件ID(上传后获得)
- */
- private String fileId;
-
- /**
- * 合同文档名称
- */
- private String documentName;
-
- /**
- * 客户姓名
- */
- private String customerName;
-
- /**
- * 客户手机号
- */
- private String customerMobile;
-
- /**
- * 客户身份证号
- */
- private String customerIdNumber;
-
- /**
- * 业务方姓名
- */
- private String businessName;
-
- /**
- * 业务方手机号
- */
- private String businessMobile;
-
- /**
- * 业务方身份证号(可选)
- */
- private String businessIdNumber;
-
- /**
- * 签署截止时间(时间戳,毫秒)
- */
- private Long signDeadline;
-
- /**
- * 备注
- */
- private String remark;
- }
|