add
yj
2024-12-05 b9900893177c78fc559223521fe839aa21000017
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
package com.iotechn.unimall.data.model;
 
import lombok.Data;
 
/**
 * Created with IntelliJ IDEA.
 * Description:
 * User: rize
 * Date: 2020/3/26
 * Time: 15:57
 */
@Data
public class OrderCalcSkuModel {
 
    // 前端请求的数据,欲购买的SKU与欲购买的数量
 
    private Long skuId;
 
    private Integer num;
 
 
    // 以下 在循环中加入的数据,是可信任的,但仅SKU循环后可用
 
    private Long freightTemplateId;
 
    /**
     * 单品重量
     */
    private Integer weight;
 
    /**
     * 此处价格为用户真实购买的价格,若商品参加促销活动,则是促销活动的价格
     */
    private Integer price;
 
    private Integer vipPrice;
 
}