puzhibing
2023-05-22 c588d0fb5d7b61611b13911e4f0b65e760a7e862
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
package com.agentdriving.user.modular.system.util.MallBook.model;
 
public class PaymentOrderGood {
 
    /** 商品编号 */
    private String goodsId;
 
    /** 商品名称,必填 */
    private String goodsName;
 
    /** 商品数量 */
    private String quantity;
 
    /** 商品价格 */
    private String price;
 
    public String getGoodsId() {
        return goodsId;
    }
 
    public void setGoodsId(String goodsId) {
        this.goodsId = goodsId;
    }
 
    public String getGoodsName() {
        return goodsName;
    }
 
    public void setGoodsName(String goodsName) {
        this.goodsName = goodsName;
    }
 
    public String getQuantity() {
        return quantity;
    }
 
    public void setQuantity(String quantity) {
        this.quantity = quantity;
    }
 
    public String getPrice() {
        return price;
    }
 
    public void setPrice(String price) {
        this.price = price;
    }
}