fhx
2024-06-14 a8251744709de9e3ca4063985a67e52b02078343
提交 | 用户 | age
4dfc90 1 package com.hz.his.dto.fdd;
F 2
3 import com.hz.his.dto.PageDto;
4 import lombok.Data;
5
20fcce 6 import java.util.List;
F 7
4dfc90 8 /**
F 9  * 法大大签署人测参与人
10  * @USER: fhx
11  * @DATE: 2024/3/6
12  **/
13 @Data
14 public class FddActorDto {
15
20fcce 16     /** 参与人标识 */
F 17     private String actorId;
18 //    /** 参与人类型(FddActorConstants) */
19 //    private String actorType;
20     /** 参与人证件类型 */
21     private String certType;
4dfc90 22
F 23     /** 定位X轴位置 */
24     private String positionX;
25     /** 定位Y轴位置 */
26     private String positionY;
27     /** 定位页码.首页从1开始 */
28     private int positionPageNo = 1;
20fcce 29     /** 签名宽度 */
F 30     private Integer width;
31     /** 签名高度 */
32     private Integer height;
4dfc90 33
F 34
20fcce 35     /** 参与人用户类型(FddConstants) */
F 36     private Integer userType;
37     /** 参与人用户(员工)标识 */
38     private String userId;
39
40     /** 签章控件列表 */
41     private List<FddSignFieldDto> signFields;
42     /** 填写控件列表 */
43     private List<FddSignFieldDto> fillFields;
44
4dfc90 45 }