wangrenhuang
2022-08-29 93781c5ba334f3b1b606d7427f5433676d09af3c
提交 | 用户 | age
0937f1 1 package com.hz.his.dto.user.coupon;
W 2
3
4 import lombok.Data;
5
6 import java.math.BigDecimal;
7
8 /**
9  * @author wzh
10  * 判断订单是否可用该优惠券的订单信息
11  * */
12 @Data
13 public class OrderItemCouponDto {
14     /**商品类型*/
1d2089 15     private Integer goodsType;
W 16     /**his商品类型*/
17     private String hisGoodsType;
0937f1 18     /**商品标识*/
W 19     private String goodsId;
20     /**sku标识*/
21     private String goodsSkuId;
22     /**购买商品数量*/
23     private Integer goodsNum;
24     /**订单金额*/
25     private BigDecimal total;
26 }