package com.mzl.flower.dto.response.flower; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data public class FlowerParamItemDTO { private Long id; @ApiModelProperty(value = "名称") private String name; @ApiModelProperty(value = "排序") private Integer sortBy; @ApiModelProperty(value = "参数集id") private Long paramId; @ApiModelProperty(value = "值") private String content; }