MrShi
2025-01-12 426718fb2310abff70f54962f118f4300ead2408
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
package com.jzq.common.bean.sign;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.TreeSet;
 
/**
 * <ul>
 * <li>项目名称 : 后台服务</li>
 * <li>文件名称 : SignatoryReq</li>
 * <li>创建时间 : 2019/8/9 9:58</li>
 * <li>描 述 :  签约方请求
 * </ul>
 *
 * @author yfx
 * @title 签约方请求
 */
@Data
@ApiModel("签约方信息")
public class SignatoryReq {
 
    @ApiModelProperty(value = "签约方名称,不超过50个字符",required = true)
    private String fullName;
 
    @ApiModelProperty(value = "身份类型:1身份证,2护照,3台胞证,4港澳居民来往内地通行证,11营业执照,12统一社会信用代码",required = true)
    private Integer identityType;
 
    @ApiModelProperty(value = "证件号,不超过50个字符",required = true)
    private String identityCard;
 
    @ApiModelProperty(value = "手机号码(个人必传),11个字符")
    private String mobile;
 
    @ApiModelProperty(value = "邮箱,企业必传")
    private String email;
 
    @ApiModelProperty(value = "签字顺序:连续签(orderNum只是针对于当前合同),顺序签时需指定")
    private Integer orderNum;
 
 
    @ApiModelProperty(value = "签字位置座标信息:positionType=0时可以传入chapteJson")
    private String chapteJson;
 
    @ApiModelProperty(value = "签字位置-表单域名ID:positionType=1时必须传入")
    private String chapteName;
 
    @ApiModelProperty(value = "签字位置-按关键字签署,positionType=2时必须传入,关键字支持多个;以英文;分隔")
    private String searchKey;
 
    @ApiModelProperty(value = "签字位置-按关键字查询-扩展,positionType=2时可以传入,支持指定查询页数/关键字颜色/透明度.可参考相关说明")
    private String searchExtend;
 
    @ApiModelProperty(value = "签字位置-按关键字查询-结果转换的配置,positionType=2时可以传入,可配置查询结果的位置偏移.可参考后面说明")
    private String searchConvertExtend;
 
    @ApiModelProperty(value = "签约方需要手签时是否不先行验证手机或邮箱:1不验证,其它验证(默认)")
    private Integer noNeedVerify;
 
    @ApiModelProperty(value = " 是否使用自动签,0或null不使用,1自动(当且只当合同处理方式为部份自动或收集批量签时有效);有些场景必须serverCaAuto=1")
    private Integer serverCaAuto;
 
    @ApiModelProperty(value = "验证等级(传数组字符串):[2,3];2银行卡认证,10三要素认证,11人脸识别,12验证码验证")
    private String authLevel;
 
    @ApiModelProperty(value = "最小验证种类:默认为authLevel数组长度;必须小于authLevel长度且大于0(等于0时按authLevel数组长度计录);如authLevel=[2,3,10],authLevelRange=2表过只需要验证其中的两项即可")
    private Integer authLevelRange;
 
    @ApiModelProperty(value = "签字类型,标准图形章或公章:0标准图形章,1公章或手写,2公章手写或手写")
    private Integer signLevel;
 
    @ApiModelProperty(value = "强制添加现场:0或null:不强制添加现场,1:强制添加现场")
    private Integer forceEvidence;
 
    @ApiModelProperty(value = "买保险年数:1-3购买年限,基它不买;注需要有相应的套餐")
    private Integer insureYear;
 
    @ApiModelProperty(value = "强制阅读多少秒,单位1-300秒")
    private Integer readTime;
 
    @ApiModelProperty(value = "企业用户指定签章ID:此值需为商户上传的自定义公章ID,或商户创建的企业的自定义公章ID。自定义公章可通过sass或api上传")
    private String signId;
 
    @ApiModelProperty(value = "标准章时是否对个人或企业章图片打码:0不打,1打码")
    private Integer nameHideStatus;
 
    @ApiModelProperty(value = "h5人脸订单号,如使用过君子签提供的人脸认证服务可以上传其订单号")
    private String h5FaceOrderNo;
 
    @ApiModelProperty(value = "现场存证只能上传视频:1是,其它不是(默认)")
    private Integer onlyVideoEvidence;
 
    @ApiModelProperty(value = "现场存证自定义标题")
    private String evidenceTitle;
 
    @ApiModelProperty(value = "是否使用电子保管函:1使用0或其它不使用;使用时需有相应套餐")
    private Integer  safeKeepLetterFlag;
 
    @ApiModelProperty(value = "api发起显示确认签字")
    private Integer apiAffirm;
    @ApiModelProperty(value = "骑缝章位置设置值为0-1的小数;")
    private Float qiFengOffset    ;//float    ?        骑缝章位置设置值为0-1的小数;
 
}