记住这个实体 @ApiModel(value = "GoodsExplosive对象", description = "爆品福利表") public class GoodsExplosive extends Model<GoodsExplosive> { @TableId(value = "id", type = IdType.AUTO) private Integer id; @ApiModelProperty(value = "服务点编号") private Integer orgId; @ApiModelProperty(value = "基础商品id") private Integer goodsItemId; @ApiModelProperty(value = "商品标签id") private Integer goodsCategoriesId; @ApiModelProperty(value = "商品名称") private String goodsName; @ApiModelProperty(value = "商品图片") private String goodsPhotos; @ApiModelProperty(value = "商品属性") private Integer goodsValueId; @ApiModelProperty(value = "起购量(默认为1)") private Integer initialNumber; @ApiModelProperty(value = "限购量(默认为1)") private Integer restrictionNumber; @ApiModelProperty(value = "上架状态 0:未申请; 1:申请中; 2:审核通过 3:审核未通过4:已被下架 5平台强制下架") private Integer groundingState; }
时间: 2024-04-24 20:22:40 浏览: 151
MybatisPlus中@TableField注解的使用详解
3星 · 编辑精心推荐
这是一个Java实体类,使用了MyBatis-Plus框架的注解,表示了一个名为GoodsExplosive的对象,描述了爆品福利表的结构,其中包括id、orgId、goodsItemId等属性。其中,@ApiModelProperty注解用于描述该属性在API文档中的含义,@TableId注解表示该属性为表的主键,@IdType.AUTO表示自动递增。
阅读全文