| | |
| | | package com.oying.modules.pc.store.domain.dto; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | |
| | | @ApiModelProperty(value = "是否支持自提") |
| | | private Integer selfPickup; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "评分") |
| | | private Double score = 0d; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "配送距离") |
| | | private Integer deliveryDuration = 0; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "配送时长") |
| | | private Integer deliveryTime = 0; |
| | | |
| | | @ApiModelProperty(value = "销量") |
| | | private Integer totalUnitsSold = 0; |
| | | |
| | | @ApiModelProperty(value = "月销售量") |
| | | private Integer monthlySales = 0; |
| | | private Integer monthlyUnitsSold = 0; |
| | | |
| | | } |