shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package com.ishop.mobile.pojo;
 
import java.io.Serializable;
 
public class PreOrderDetailRequest implements Serializable {
 
    public Long getShoppingCartId() {
        return shoppingCartId;
    }
 
    public void setShoppingCartId(Long shoppingCartId) {
        this.shoppingCartId = shoppingCartId;
    }
 
    public Long getProductId() {
        return productId;
    }
 
    public void setProductId(Long productId) {
        this.productId = productId;
    }
 
    public Integer getAttrValueId() {
        return attrValueId;
    }
 
    public void setAttrValueId(Integer attrValueId) {
        this.attrValueId = attrValueId;
    }
 
    public Integer getProductNum() {
        return productNum;
    }
 
    public void setProductNum(Integer productNum) {
        this.productNum = productNum;
    }
 
    public String getOrderNo() {
        return orderNo;
    }
 
    public void setOrderNo(String orderNo) {
        this.orderNo = orderNo;
    }
 
    /**
     * 用户输入的其他金额,没有则为空。
     * <p>在定义商品价格规格时使用,此时需要用户输入金额。</p>
     * @return
     * @date 2023-09-13
     */
    public String getOtherMoney() {
        return otherMoney;
    }
 
    public void setOtherMoney(String otherMoney) {
        this.otherMoney = otherMoney;
    }
 
    private String otherMoney;
    //    @ApiModelProperty(value = "购物车编号,购物车预下单时必填")
    private Long shoppingCartId;
 
//    @ApiModelProperty(value = "商品id(立即购买、活动购买必填)")
    private Long productId;
 
//    @ApiModelProperty(value = "商品规格属性id(立即购买、活动购买必填)")
    private Integer attrValueId;
 
//    @ApiModelProperty(value = "商品数量(立即购买、活动购买必填)")
    private Integer productNum;
 
//    @ApiModelProperty(value = "订单编号(再次购买必填)")
    private String orderNo;
}