cloudroam
2024-09-20 a1416117c7478a66971cca278e9909811e0000d5
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
package com.mzl.flower.dto.request.flower;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class FlowerMarkupPsSpQueryDTO {
    @ApiModelProperty(value = "合伙人id")
    private Long partnerId;
 
    @ApiModelProperty(value = "名称")
    private String name;
 
    @ApiModelProperty(value = "级别; FLOWER_LEVEL")
    private String level;
 
    @ApiModelProperty(value = "分类")
    private Long category;
 
    @ApiModelProperty(value = "标签")
    private String tags;
 
    @ApiModelProperty(value = "是否加价")
    private String isFee;
 
    @ApiModelProperty(value = "供应商")
    private String supplierName;
 
}