Administrator
4 days ago 92c26cea4de00349b346f71da3cf530b26c31eb0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package cc.mrbird.febs.mall.vo.common;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ApiIndexSetVo", description = "类")
public class ApiIndexSetVo {
 
    @ApiModelProperty(value = "开屏页链接")
    private String pngUrl;
 
    @ApiModelProperty(value = "自动关闭时间秒")
    private String timeStop;
}