| package com.mzl.flower.dto.response.flower; | 
|   | 
| import com.mzl.flower.base.AbstractTransDTO; | 
| import com.mzl.flower.base.annotation.DictTrans; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| @Data | 
| public class FlowerZoneDTO extends AbstractTransDTO { | 
|     private Long id; | 
|   | 
|     @ApiModelProperty(value = "名称") | 
|     private String name; | 
|   | 
|     @ApiModelProperty(value = "背景图") | 
|     private String bgUrl; | 
|   | 
|     @ApiModelProperty(value = "状态") | 
|     @DictTrans(target = "statusStr", codeType = "COMMON_PUBLISH_STATUS") | 
|     private String status; | 
|   | 
|     @ApiModelProperty(value = "状态") | 
|     private String statusStr; | 
|   | 
|     @ApiModelProperty(value = "排序") | 
|     private int seq; | 
|   | 
| } |