2021与蓝度共同重构项目,服务端
MercuryZ
2022-03-31 ef270bd1855b5ce3f398c5df024840a498e33a8f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.sandu.ximon.admin.dto.wxquery;
 
import lombok.Data;
 
/**
 * @Author liuhaonan
 * @Date 2022/3/29
 * @Version 1.0
 */
@Data
public class goods_detail {
    private String goods_id;//商品编码
    private Integer quantity;//商品数量
    private Integer unit_price;//商品单价
    private Integer discount_amount;//商品优惠金额
    private String goods_remark;//商品备注
 
}