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
| package cn.lili.modules.payment.kit.plugin.wechat.model;
|
| import lombok.Data;
| import lombok.experimental.Accessors;
|
| /**
| * 统一下单-单品列表
| *
| * @author Chopper
| * @since 2020/12/17 17:47
| */
|
| @Data
| @Accessors(chain = true)
| public class GoodsDetail {
| /**
| * 商户侧商品编码
| */
| private String merchant_goods_id;
| /**
| * 微信侧商品编码
| */
| private String wechatpay_goods_id;
| /**
| * 商品名称
| */
| private String goods_name;
| /**
| * 商品数量
| */
| private int quantity;
| /**
| * 商品单价
| */
| private int unit_price;
| }
|
|