无关风月
2024-12-09 2053b8fe0e98d4b4449bc756a93ced78f42277c4
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
package com.jilongda.optometry.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @ClassName AppOrderGoodsVO
 * @Description TODO
 * @Author jqs
 * @Date 2024/4/17 15:01
 * @Version 1.0
 */
@Data
public class AppOrderGoodsVO {
 
    @ApiModelProperty(value = "订单商品id")
    private Long orderGoodsId;
    @ApiModelProperty(value = "产品规格id")
    private Long specId;
 
    @ApiModelProperty(value = "产品名称")
    private String goodsName;
 
    @ApiModelProperty(value = "产品图片")
    private String goodsPicture;
 
    @ApiModelProperty(value = "规格")
    private String goodsSpecifications;
 
    @ApiModelProperty(value = "产品价格")
    private String goodsPrice;
 
    @ApiModelProperty(value = "修改后价格")
    private String updateGoodsPrice;
 
    @ApiModelProperty(value = "购买数量")
    private Integer buyNum;
 
    @ApiModelProperty(value = "商品小计")
    private String goodsTotal;
}