jinlin
2024-07-17 3c15e684416e06a7351eeb2d756e5be778a893fd
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
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 = "svg图片")
    private String svgContent;
 
    @ApiModelProperty(value = "检索关键字")
    private String contentType;
 
    @ApiModelProperty(value = "产品类型")
    private Integer productType;
 
    @ApiModelProperty(value = "")
    private String remark;
 
 
}