Helius
2021-12-01 f736dec5d9806dcdce4f141a8a87c745375d8677
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.xzx.gc.system.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class OnSysBannerDto {
 
    @ApiModelProperty(value = "Id")
    private long id;
 
    @ApiModelProperty(value = "状态 1:未上架 2:已上架")
    private Integer status;
}