wangrenhuang
2023-05-22 f3274f5ce0e125a56db2feaac9a047ac25868fdc
提交 | 用户 | age
067cfb 1 package com.hz.his.dto.deduction;
W 2
3 import lombok.Data;
4
5 /**
6  * @ClassName DeductionDto
7  * @Description 划扣
8  * @Author Wrh
9  * @Date 2022/10/13 10:37
10  * @Version 1.0
11  */
12 @Data
13 public class DeductionDto {
14
15     /**划扣id*/
16     private String deductionSingleId;
17     /**用户id*/
18     private String userId;
19     /**是否客户确认(0:否,1:是)*/
20     private Integer isCustomerConfirm;
21
22
23 }