chenjiahe
2023-07-04 4da2aa76c2f27c7ad49ee448ded1fc4c507645d2
提交 | 用户 | age
3e2664 1 package com.hz.his.vo.user.card;
C 2
3 import lombok.Data;
4
5 import java.math.BigDecimal;
6
7 /**用户卡项条目信息
8  * @author CJH*/
9 @Data
10 public class UserCardItemVo {
11
12     /**用户卡项条目-标识*/
13     private String itemId;
14     /**用户卡项条目-名称*/
15     private String itemName;
b8f2fb 16     /**用户卡项条目-分摊总金额*/
3e2664 17     private BigDecimal total;
C 18     /**用户卡项条目-单次抵扣金额*/
19     private BigDecimal singleAmount;
20     /**用户卡项条目-总抵扣次数*/
21     private Integer deductionNum;
b8f2fb 22     /**用户卡项条目-单次抵扣次数*/
3e2664 23     private Integer deductionSingle;
C 24     /**用户卡项条目-已抵扣次数*/
25     private Integer usedNum;
26     /**剩余可抵扣总次数*/
27     private Integer surplusNum;
28
29 }