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
27
28
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;
 
}