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