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 = "检索关键字")
|
private String contentType;
|
|
@ApiModelProperty(value = "产品类型")
|
private Integer productType;
|
|
@ApiModelProperty(value = "")
|
private String remark;
|
|
|
}
|