Administrator
2026-01-19 18b69be4965535b9f3b0be874696dd19f4fe3cc3
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;
}