REQ-3581: 备份
This commit is contained in:
parent
0ef69d891b
commit
ee08db5d01
@ -52,7 +52,6 @@ public class CreateContractInfo {
|
||||
.collect(toSet());
|
||||
}
|
||||
|
||||
|
||||
@Setter @Getter
|
||||
public static class ApproverInfo {
|
||||
|
||||
@ -78,7 +77,7 @@ public class CreateContractInfo {
|
||||
* 签署方在签署合同之前,需要强制阅读合同的时长,可指定为3秒至300秒之间的任意值
|
||||
*/
|
||||
@NotNull(message = "preReadTime不能为空")
|
||||
private Long preReadTime = 10L;
|
||||
private Long preReadTimeSeconds = 10L;
|
||||
|
||||
/**
|
||||
* 指定盖的章的类型
|
||||
|
||||
@ -214,7 +214,7 @@ public class EssClient implements InitializingBean {
|
||||
approver.setOrganizationOpenId(OuOpenId.create(approverInfo.getOuId()).toOpenId());
|
||||
approver.setApproverType(approverInfo.getApproverType().name());
|
||||
approver.setNotifyType("NONE");
|
||||
approver.setPreReadTime(approverInfo.getPreReadTime());
|
||||
approver.setPreReadTime(approverInfo.getPreReadTimeSeconds());
|
||||
if (CollectionUtils.isNotEmpty(approverInfo.getSealTypes())) {
|
||||
ComponentLimit componentLimit = new ComponentLimit();
|
||||
componentLimit.setComponentType("SIGN_SEAL");
|
||||
|
||||
Loading…
Reference in New Issue
Block a user