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;
|
}
|
}
|