| 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; | 
|   | 
| } |