package com.hz.his.vo.user.card;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**用户卡项条目信息
|
* @author CJH*/
|
@Data
|
public class UserCardItemVo {
|
|
/**用户卡项条目-标识*/
|
private String itemId;
|
/**用户卡项条目-名称*/
|
private String itemName;
|
/**用户卡项条目-总金额*/
|
private BigDecimal total;
|
/**用户卡项条目-单次抵扣金额*/
|
private BigDecimal singleAmount;
|
/**用户卡项条目-总抵扣次数*/
|
private Integer deductionNum;
|
/**用户卡项条目-每次抵扣次数*/
|
private Integer deductionSingle;
|
/**用户卡项条目-已抵扣次数*/
|
private Integer usedNum;
|
/**剩余可抵扣总次数*/
|
private Integer surplusNum;
|
|
}
|