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