| | |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | |
| | |
| | | private Long id; |
| | | |
| | | @ApiModelProperty(value = "用餐人数") |
| | | @NotNull(message = "用餐人数不能为空") |
| | | @TableField("mealCount") |
| | | private Integer mealCount; |
| | | @ApiModelProperty(value = "店铺id") |
| | | @TableField("shopId") |
| | | private Long shopId; |
| | | |
| | | @ApiModelProperty(value = "餐饮类型 1=中餐 2=火锅") |
| | | @TableField("mealType") |
| | | private Integer mealType; |
| | | @ApiModelProperty(value = "创建时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @TableField("createTime") |