| | |
| | | package com.ruoyi.auction.domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.FieldFill; |
| | | import com.baomidou.mybatisplus.annotation.FieldStrategy; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.ruoyi.common.core.enums.AuctionStartStatusEnum; |
| | | import com.ruoyi.common.core.enums.AuctionGoodsStatusEnum; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import java.io.Serializable; |
| | |
| | | @ApiModelProperty(value = "商品id") |
| | | private Long goodsSkuId; |
| | | |
| | | @ApiModelProperty(value = "商品名称") |
| | | private String goodsSkuName; |
| | | |
| | | @ApiModelProperty(value = "起拍价格") |
| | | private BigDecimal startingPrice; |
| | | |
| | |
| | | private BigDecimal minimumMarkupAmount; |
| | | |
| | | @ApiModelProperty(value = "拍品数量") |
| | | private Integer itemQuantity; |
| | | private Integer salesroomStock; |
| | | |
| | | @ApiModelProperty(value = "兜底成交个数") |
| | | @TableField(insertStrategy = FieldStrategy.IGNORED, updateStrategy = FieldStrategy.IGNORED) |
| | | private Integer guaranteedTradeVolume; |
| | | |
| | | @ApiModelProperty(value = "拍卖时间(分钟)") |
| | |
| | | @ApiModelProperty(value = "开始时间") |
| | | private LocalDateTime startTime; |
| | | |
| | | @ApiModelProperty(value = "状态 0=预展中 1=拍卖中 2=已结束") |
| | | private AuctionStartStatusEnum status; |
| | | @ApiModelProperty(value = "状态 0=等待中 1=进行中 2=已结束") |
| | | private AuctionGoodsStatusEnum status; |
| | | |
| | | @ApiModelProperty(value = "创建者") |
| | | @TableField(value = "create_by", fill = FieldFill.INSERT) |
| | |
| | | private LocalDateTime createTime; |
| | | |
| | | @ApiModelProperty(value = "更新者") |
| | | @TableField(value = "update_time", fill = FieldFill.INSERT_UPDATE) |
| | | @TableField(value = "update_by", fill = FieldFill.INSERT_UPDATE) |
| | | private String updateBy; |
| | | |
| | | @ApiModelProperty(value = "更新时间") |
| | |
| | | @TableLogic |
| | | private Integer delFlag; |
| | | |
| | | @ApiModelProperty(value = "结束时间") |
| | | private LocalDateTime endTime; |
| | | |
| | | |
| | | } |