1.1
tj
2025-06-05 77c1b2e42b966f6ac3781efceb2cffdd590addec
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;
 
}