fhx
2024-06-14 a8251744709de9e3ca4063985a67e52b02078343
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
package com.hz.his.dto.fdd;
 
import com.hz.his.dto.PageDto;
import lombok.Data;
 
import java.util.List;
 
/**
 * 法大大签署人测参与人
 * @USER: fhx
 * @DATE: 2024/3/6
 **/
@Data
public class FddActorDto {
 
    /** 参与人标识 */
    private String actorId;
//    /** 参与人类型(FddActorConstants) */
//    private String actorType;
    /** 参与人证件类型 */
    private String certType;
 
    /** 定位X轴位置 */
    private String positionX;
    /** 定位Y轴位置 */
    private String positionY;
    /** 定位页码.首页从1开始 */
    private int positionPageNo = 1;
    /** 签名宽度 */
    private Integer width;
    /** 签名高度 */
    private Integer height;
 
 
    /** 参与人用户类型(FddConstants) */
    private Integer userType;
    /** 参与人用户(员工)标识 */
    private String userId;
 
    /** 签章控件列表 */
    private List<FddSignFieldDto> signFields;
    /** 填写控件列表 */
    private List<FddSignFieldDto> fillFields;
 
}