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