| | |
| | | package com.ruoyi.system.api.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.ruoyi.common.core.enums.ListingStatusEnum; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @ApiModelProperty(value = "库存") |
| | | private Integer stock; |
| | | |
| | | @ApiModelProperty(value = "已售数量") |
| | | private Integer soldQuantity; |
| | | |
| | | @ApiModelProperty(value = "单位") |
| | | private String unit; |
| | | |
| | |
| | | private String coverPic; |
| | | |
| | | @ApiModelProperty(value = "详情图,不超过五张图片") |
| | | private String alubm; |
| | | private String album; |
| | | |
| | | @ApiModelProperty(value = "分享标题") |
| | | private String shareTitle; |
| | |
| | | private Integer sortNum; |
| | | |
| | | @ApiModelProperty(value = "上架状态 0=上架中 1= 已下架") |
| | | private Integer listingStatus; |
| | | private ListingStatusEnum listingStatus; |
| | | |
| | | @ApiModelProperty(value = "创建者") |
| | | @TableField(value = "create_by", fill = FieldFill.INSERT) |