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