chenjiahe
2022-07-13 7c680b3e59d8b46fa4797f283101476917fa44c6
提交 | 用户 | age
7c680b 1 package com.hz.phis.dt.user.coupon;
C 2
3
4 import com.hz.his.dto.PageDto;
5
6 import java.math.BigDecimal;
7 import java.util.List;
8
9 /**用户可用优惠券扩展*/
10 public class UserCanUseCouponDt extends PageDto {
11     /**用户标识*/
12     private String userId;
13     /**满足金额*/
14     private BigDecimal total;
15     /**满足件数*/
16     private Integer itemNum;
17     /**商品对应的his标识*/
18     private List<HisGoodsDt> hisGoodsDtList;
19
20     public String getUserId() {
21         return userId;
22     }
23
24     public void setUserId(String userId) {
25         this.userId = userId;
26     }
27
28     public BigDecimal getTotal() {
29         return total;
30     }
31
32     public void setTotal(BigDecimal total) {
33         this.total = total;
34     }
35
36     public Integer getItemNum() {
37         return itemNum;
38     }
39
40     public void setItemNum(Integer itemNum) {
41         this.itemNum = itemNum;
42     }
43
44     public List<HisGoodsDt> getHisGoodsDtList() {
45         return hisGoodsDtList;
46     }
47
48     public void setHisGoodsDtList(List<HisGoodsDt> hisGoodsDtList) {
49         this.hisGoodsDtList = hisGoodsDtList;
50     }
51 }