package com.sandu.ximon.admin.dto.wxquerydto;
|
|
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;//商品备注
|
|
}
|