| | |
| | | package com.ruoyi.order.domain.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.system.api.domain.dto.MgtPageDto; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | private Long shopId; |
| | | |
| | | @ApiModelProperty(value = "下单时间-范围开始") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime createTimeBegin; |
| | | @ApiModelProperty(value = "下单时间-范围结束") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime createTimeEnd; |
| | | |
| | | @ApiModelProperty(value = "订单来源1.店铺商品2.平台秒杀活动3.线下创建") |
| | | private Integer orderFrom; |
| | | |
| | | @ApiModelProperty(value = "核销时间-范围开始") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime useTimeBegin; |
| | | @ApiModelProperty(value = "核销时间-范围结束") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime useTimeEnd; |
| | | |
| | | |