tj
7 天以前 b428226d0cf78bbb843fa17bffb1e338230fae6c
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
package com.mzl.flower.dto.response.flower;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class FlowerMarkupPsSpCgListDTO extends FlowerMarkupPsSpCgDTO {
    @ApiModelProperty(value = "父分类名称")
    private String parentName;
 
    @ApiModelProperty(value = "名称")
    private String name;
 
    @ApiModelProperty(value = "颜色")
    private String color;
 
    @ApiModelProperty(value = "单位")
    private String unit;
 
    @ApiModelProperty(value = "重量")
    private String weight;
 
    @ApiModelProperty(value = "图片")
    private String imageUrl;
 
}