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
| package com.hz.his.dto.user.coupon;
|
|
| import com.hz.his.dto.PageDto;
| import lombok.Data;
|
| import java.math.BigDecimal;
|
| /**
| * @author wzh
| * 商品可用优惠券扩展
| * */
| @Data
| public class GoodsCanUseCouponDto extends PageDto {
| /**用户标识*/
| private String userId;
| /**sku标识*/
| private String skuId;
| /**商品类型*/
| private Integer goodType;
| /**his商品类型*/
| private String hisGoodType;
| /**商品金额*/
| private BigDecimal price;
| }
|
|