package com.matrix.system.shopXcx.api.pojo;
|
|
import com.matrix.system.shopXcx.bean.ShopCoupon;
|
import com.matrix.system.shopXcx.bean.ShopProduct;
|
import com.matrix.system.shopXcx.bean.ShopSku;
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* @author jyy
|
*/
|
@Data
|
public class OrderItemDto {
|
/**
|
* 产品ID
|
*/
|
private Integer productId;
|
/**
|
* 产品规格ID
|
*/
|
private Integer skuId;
|
|
private ShopProduct shopProduct;
|
|
private ShopSku shopSku;
|
|
/**
|
* 购买数量
|
*/
|
private Integer count;
|
|
/**
|
* 支付方式1 直接购买 2,积分兑换
|
*/
|
private Integer payType;
|
|
/**
|
* 购物车id
|
*/
|
private Integer cartId;
|
|
|
private List<ShopCoupon> shopCoupons;
|
|
|
}
|