Administrator
2025-05-23 0d520631715ce7918a3da8cecd4ef8461a9aae66
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;
}