jinlin
2024-05-28 7c723bef7e4d9aaf1ac07da4a369b28f572e551c
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
40
41
42
43
44
45
46
package com.zt.life.modules.mainPart.sysPictureBase.model;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.zt.common.entity.BusiEntity;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * sys_picture_base
 *
 * @author zt generator
 * @since 1.0.0 2024-02-27
 */
@Data
@EqualsAndHashCode(callSuper=false)
@TableName("sys_picture_base")
public class SysPictureBase extends BusiEntity {
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "是否默认")
    private Integer isDefault;
 
    @ApiModelProperty(value = "图片名称")
    private String name;
 
    @ApiModelProperty(value = "图片宽度")
    private Integer width;
 
    @ApiModelProperty(value = "图片高度")
    private Integer height;
 
    @ApiModelProperty(value = "svg图片")
    private String svgContent;
 
    @ApiModelProperty(value = "检索关键字")
    private String contentType;
 
    @ApiModelProperty(value = "产品类型")
    private Integer productType;
 
    @ApiModelProperty(value = "")
    private String remark;
 
 
}