fwq
2023-05-06 368f31f9ec0c760f7346e465322da7a3f17da444
提交 | 用户 | 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 }