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 = "锚点x6的XML") private String anchorsContent; @ApiModelProperty(value = "锚点坐标") private String anchorsPoints; @ApiModelProperty(value = "检索关键字") private String contentType; @ApiModelProperty(value = "产品类型") private Integer productType; @ApiModelProperty(value = "") private String remark; }