gongzuming
2024-09-13 a8d85088e174a2bc037d00ac06311192acd75f94
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;
 
}