REQ-3581: 备份

This commit is contained in:
yanglin 2025-02-13 14:38:57 +08:00
parent 0ef69d891b
commit ee08db5d01
2 changed files with 2 additions and 3 deletions

View File

@ -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;
/**
* 指定盖的章的类型

View File

@ -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");