| 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/09/07 11:41 | 
|  */ | 
| @Data | 
| @ApiModel("素材库-商品品类参数配置表") | 
| @TableName("`base_goods_param`") | 
| public class BaseGoodsParam { | 
|   | 
|     @TableId(type = IdType.AUTO) | 
|     @ApiModelProperty(value = "主键") | 
|     @ExcelColumn(name="主键") | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "创建人编码") | 
|     @ExcelColumn(name="创建人编码") | 
|     private Integer creator; | 
|   | 
|     @ApiModelProperty(value = "创建时间") | 
|     @ExcelColumn(name="创建时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date createDate; | 
|   | 
|     @ApiModelProperty(value = "更新人编码") | 
|     @ExcelColumn(name="更新人编码") | 
|     private Integer editor; | 
|   | 
|     @ApiModelProperty(value = "更新时间") | 
|     @ExcelColumn(name="更新时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private Date editDate; | 
|   | 
|     @ApiModelProperty(value = "是否删除0否 1是") | 
|     @ExcelColumn(name="是否删除0否 1是") | 
|     private Integer isdeleted; | 
|   | 
|     @ApiModelProperty(value = "名称(不可重复)") | 
|     @ExcelColumn(name="名称(不可重复)") | 
|     private String name; | 
|   | 
|     @ApiModelProperty(value = "备注") | 
|     @ExcelColumn(name="备注") | 
|     private String remark; | 
|   | 
|     @ApiModelProperty(value = "状态 0启用 1禁用") | 
|     @ExcelColumn(name="状态 0启用 1禁用") | 
|     private Integer status; | 
|   | 
|     @ApiModelProperty(value = "排序码") | 
|     @ExcelColumn(name="排序码") | 
|     private Integer sortnum; | 
|   | 
|     @ApiModelProperty(value = "关联品类参数编码(关联base_cate_param表)") | 
|     @ExcelColumn(name="关联品类参数编码(关联base_cate_param表)") | 
|     private Integer pramaId; | 
|   | 
|     @ApiModelProperty(value = "参数值") | 
|     @ExcelColumn(name="参数值") | 
|     private String val; | 
|   | 
|     @ApiModelProperty(value = "商品编码(关联base_goods表)") | 
|     @ExcelColumn(name="商品编码(关联base_goods表)") | 
|     private Integer goodsId; | 
|   | 
|     @ApiModelProperty(value = "关联品类参数编码") | 
|     @TableField(exist = false) | 
|     private String paramName; | 
| } |