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