Cui Zhi Feng
2024-09-18 3a6c70ccfece562accad0a3e3ae67745815d73a7
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
package com.mzl.flower.dto.response.flower;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class FlowerShowListDTO extends FlowerSupplierListDTO {
 
    @ApiModelProperty(value = "供应商名称")
    private String supplierName;
 
    @ApiModelProperty(value = "供应商类型")
    private String supplierType;
 
    @ApiModelProperty(value = "标签")
    private String tags;
 
    @ApiModelProperty(value = "是否收藏")
    private Boolean collection;
 
    private int collectCount;
 
    private Integer shopnum;
 
    @ApiModelProperty(value = "是否推荐")
    private Boolean recommend;
 
    @ApiModelProperty(value = "会员价")
    private BigDecimal priceMember;
}