zhanghua
2025-06-11 2ca169c85f61256fb5185c078dba1bfef2be5066
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
37
38
39
package cn.lili.modules.system.entity.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 商品设置
 *
 * @author Chopper
 * @since 2020/11/17 7:58 下午
 */
@Data
public class GoodsSetting implements Serializable {
 
    private static final long serialVersionUID = -4132785717179910025L;
    @ApiModelProperty(value = "是否开启商品审核")
    private Boolean goodsCheck;
 
    @ApiModelProperty(value = "小图宽")
    private Integer smallPictureWidth;
 
    @ApiModelProperty(value = "小图高")
    private Integer smallPictureHeight;
 
    @ApiModelProperty(value = "缩略图宽")
    private Integer abbreviationPictureWidth;
 
    @ApiModelProperty(value = "缩略图高")
    private Integer abbreviationPictureHeight;
 
    @ApiModelProperty(value = "原图宽")
    private Integer originalPictureWidth;
 
    @ApiModelProperty(value = "原图高")
    private Integer originalPictureHeight;
 
}