8 changed files with 39 additions and 17 deletions
@ -0,0 +1,27 @@ |
|||||
|
package cc.hiver.mall.pojo.vo; |
||||
|
|
||||
|
import cc.hiver.core.base.HiverBaseEntity; |
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
import io.swagger.annotations.ApiModel; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
@Data |
||||
|
@ApiModel(value = "商品类别表") |
||||
|
@TableName(value = "t_product_category", autoResultMap = true) |
||||
|
public class ProductCategoryVo2 extends HiverBaseEntity { |
||||
|
|
||||
|
@ApiModelProperty(value = "商品类别名称") |
||||
|
private String categoryName; |
||||
|
|
||||
|
@ApiModelProperty(value = "店铺id") |
||||
|
private String shopId; |
||||
|
|
||||
|
@ApiModelProperty(value = "数量") |
||||
|
private int count; |
||||
|
|
||||
|
@ApiModelProperty(value = "盘点数量") |
||||
|
private int stockCount; |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
} |
||||
Loading…
Reference in new issue