jiangping
2023-10-13 5ec73adcca1d7f2b96c623cfdc66e309958ae2bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.doumee.dao.system.dto;
 
import com.doumee.core.annotation.excel.ExcelColumn;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2023/9/12 9:31
 */
@Data
@ApiModel("更新企业配置请求类")
public class UpdateWebParamDTO {
 
    @ApiModelProperty(value = "内容范围尺寸")
    private String rangeSize;
 
    @ApiModelProperty(value = "主色值")
    private String mainColor;
 
    @ApiModelProperty(value = "背景图")
    private String bgImg;
 
    @ApiModelProperty(value = "顶部宣传图")
    private String topImg;
 
    @ApiModelProperty(value = "PK台图")
    private String pkImg;
    @ApiModelProperty(value = "配置参数 1.0.2版本只需要传该参数")
    private String newParam;
 
 
}