package com.ruoyi.basic.pojo; import com.baomidou.mybatisplus.annotation.*; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data @TableName("product_model") public class ProductModel { private static final long serialVersionUID = 1L; /** * 序号 */ @TableId(type = IdType.AUTO) private Long id; /** * 关联产品id */ private Long productId; /** * 规格型号 */ private String model; /** * 单位 */ private String unit; @ApiModelProperty(value = "租户ID") @TableField(fill = FieldFill.INSERT) private Integer tenantId; }