无关风月
2024-12-18 0e0995a1aa2bf36015c556509de79077f749a8a2
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
package com.jilongda.optometry.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
@Data
@ApiModel("产品详情VO")
public class GoodDetailVO extends TGoods {
          @ApiModelProperty(value = "产品价格")
          private List<BigDecimal> price;
    @ApiModelProperty(value = "是否为常用商品1是0否")
    private Integer isUsual;
        @ApiModelProperty(value = "产品规格")
        private String specifications;
        @ApiModelProperty(value = "总经理价格")
        private List<BigDecimal> generalManagerPrice;
        @ApiModelProperty(value = "销售总监价格")
        private List<BigDecimal> salesDirector;
        @ApiModelProperty(value = "客户经理价格")
        private List<BigDecimal> accountManager;
 
 
}