chenjiahe
2023-03-20 54bc6de188fc6403c472c2d25a20c09ee6fb97ed
提交 | 用户 | age
54bc6d 1 package com.hz.his.dto.user.project;
C 2
3 import lombok.Data;
4
5 @Data
6 public class DirectCannelVo {
7
8     /**用户项目标识*/
9     private String id;
10     /**操作类型*/
11     private Integer operateType;
12     /**操作疗程数*/
13     private Integer operateNum;
14
15     /**操作门店标识*/
16     private String shopId;
17     /**操作员工*/
18     private String employeeId;
19     /**操作员工角色*/
20     private String employeeRoleId;
21
22     /**操作原因*/
23     private String remarkInfo;
24
25     /**操作类型-减少/作废*/
26     public static final int OPERATE_TYPE_CANNEL = 0;
27     /**操作类型-添加*/
28     public static final int OPERATE_TYPE_ADD = 1;
29
30 }