cmg
2024-05-27 c2af7240d43586b8e3cc295e9e97f7d24278025d
提交 | 用户 | 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;
d6e3de 26     /** 模板类型(电子病历和处方时选择的模板) */
F 27     private String templateType;
a68d7b 28     /** 签署任务编号 */
F 29     private String signTaskId;
773ebf 30
4e5fd1 31     /** 操作人类型(OperatorConstants) */
F 32     private Integer opType;
773ebf 33     /** 登录操作人角色id */
F 34     private String loginRoleId;
35
36     /** 签名图片路径 */
37     private String signImg;
38     /** 用户类型 */
39     private Integer userType;
40     /** 关联标识 */
41     private String commonId;
42
43     /** 重定向地址 */
44     private String redirectUrl;
45     /** 编码 */
46     private String codeNo;
47
48     /** 作废原因,长度最大200字符 */
49     private String reason;
ed33e5 50
F 51     /** 签章id */
52     private String sealId;
e71474 53
b5e002 54     //作废签署用到
F 55     /** 定位X轴位置 */
56     private String positionX;
57     /** 定位Y轴位置 */
58     private String positionY;
59     /** 定位页码.首页从1开始 */
60     private int positionPageNo = 1;
42cfe6 61     /** 签名宽度 */
F 62     private Integer width;
63     /** 签名高度 */
64     private Integer height;
b5e002 65
F 66     //发起创建签署任务用到
67     /** 参与人类型(FddActorConstants) */
68     private String actorType;
69     /** 参与人证件类型 */
70     private String certType;
ced811 71
9f0af3 72 //    /** 签署参与人(因为非json接参,所以要用个字符对象接收) */
F 73 //    private String actorListStr;
74 //    /** 签署参与人 */
75 //    private List<FddActorDto> actorList;
773ebf 76 }