Administrator
4 days ago 726de53a23bd9b6b24ccc3ae6c3b1a6b24b67379
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;
}