fhx
2024-05-06 c38d8e66aa5638d163805f749a620906aa199a38
提交 | 用户 | age
773ebf 1 package com.hz.his.dto.fdd;
F 2
3 import com.hz.his.dto.PageDto;
4 import lombok.Data;
5
4dfc90 6 import java.util.List;
F 7
773ebf 8 /**
F 9  * @USER: fhx
10  * @DATE: 2024/3/6
11  **/
12 @Data
13 public class FddDto extends PageDto {
14
15     /** 用户标识 */
16     private String userId;
17     /** 到访订单id */
18     private String visitOrderId;
120b12 19     /** 门店标识 */
F 20     private String shopId;
773ebf 21
F 22     /** 签署模板ID */
23     private String signTemplateId;
24     /** 签署任务模板名称 */
25     private String signTemplateName;
26
4e5fd1 27     /** 操作人类型(OperatorConstants) */
F 28     private Integer opType;
773ebf 29     /** 登录操作人角色id */
F 30     private String loginRoleId;
31
32     /** 签名图片路径 */
33     private String signImg;
34     /** 用户类型 */
35     private Integer userType;
36     /** 关联标识 */
37     private String commonId;
38
39     /** 重定向地址 */
40     private String redirectUrl;
41     /** 编码 */
42     private String codeNo;
43
44     /** 作废原因,长度最大200字符 */
45     private String reason;
ed33e5 46
F 47     /** 签章id */
48     private String sealId;
e71474 49
b5e002 50     //作废签署用到
F 51     /** 定位X轴位置 */
52     private String positionX;
53     /** 定位Y轴位置 */
54     private String positionY;
55     /** 定位页码.首页从1开始 */
56     private int positionPageNo = 1;
57
58     //发起创建签署任务用到
59     /** 参与人类型(FddActorConstants) */
60     private String actorType;
61     /** 参与人证件类型 */
62     private String certType;
4dfc90 63     /** 签署参与人 */
F 64     private List<FddActorDto> actorList;
773ebf 65 }