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