Cui Zhi Feng
2024-08-23 2822a346324bd5689e6d86f7e318e89c3936cb53
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.mzl.flower.dto.request.flower;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class FlowerMarkupPsSpCgQueryDTO {
    @ApiModelProperty(value = "合伙人id")
    private Long partnerId;
 
    @ApiModelProperty(value = "分类id")
    private Long categoryId;
 
    @ApiModelProperty(value = "名称")
    private String name;
 
    @ApiModelProperty(value = "重量")
    private Double weight;
 
}