| | |
| | | package com.panzhihua.common.model.dtos.shop; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonIgnore; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | @ApiModelProperty(value = "商品",example = "鞋") |
| | | private String goodsName; |
| | | @ApiModelProperty(value = "订单状态(1.待付款 2.代发货 3.待收货 4.待评价 5.已完成 6.已取消)",example = "1") |
| | | private Date status; |
| | | private Integer status; |
| | | @ApiModelProperty(value = "下单时间-开始",example = "1") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private String createAtStart; |
| | | @ApiModelProperty(value = "下单时间-结束",example = "1") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date createAtEnd; |
| | | @ApiModelProperty(value = "分页-当前页数",example = "1", required = true) |
| | | private Long pageNum; |