package com.doumee.dao.business.model; import com.baomidou.mybatisplus.annotation.TableField; import com.doumee.core.annotation.excel.ExcelColumn; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import com.fasterxml.jackson.annotation.JsonFormat; import java.util.Date; /** * 商品标签信息表 * @author 江蹄蹄 * @date 2023/03/21 15:48 */ @Data @ApiModel("商品标签信息表") @TableName("`product_label`") public class ProductLabel { @ApiModelProperty(value = "主键", example = "1") @ExcelColumn(name="主键") @TableId(value = "id", type = IdType.AUTO) private Integer id; @ApiModelProperty(value = "创建人编码", example = "1") @ExcelColumn(name="创建人编码") private Integer creator; @ApiModelProperty(value = "创建时间") @ExcelColumn(name="创建时间") private Date createDate; @ApiModelProperty(value = "更新人编码", example = "1") @ExcelColumn(name="更新人编码") private Integer editor; @ApiModelProperty(value = "更新时间") @ExcelColumn(name="更新时间") private Date editDate; @ApiModelProperty(value = "是否删除0否 1是", example = "1") @ExcelColumn(name="是否删除0否 1是") private Integer isdeleted; @ApiModelProperty(value = "备注") @ExcelColumn(name="备注") private String remark; @ApiModelProperty(value = "标签编码(关联labels表)", example = "1") @ExcelColumn(name="标签编码(关联labels表)") private Integer labelId; @ApiModelProperty(value = "店铺编码(关联shop表)", example = "1") @ExcelColumn(name="店铺编码(关联shop表)") private Integer shopId; @ApiModelProperty(value = "标签名称" ) @TableField(exist = false) private String lablesName; }