package com.ruoyi.order.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ruoyi.common.core.web.page.BasePage;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.time.LocalDateTime;
|
import java.util.List;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2024/12/12 17:29
|
*/
|
@Data
|
@ApiModel
|
public class OrderPageList extends BasePage {
|
@ApiModelProperty("订单编号")
|
public String code;
|
@ApiModelProperty("下单用户")
|
private String userName;
|
@ApiModelProperty("联系电话")
|
private String phone;
|
@ApiModelProperty("商品类型(1=服务,2=单品-自提,3=单品-快递)")
|
private Integer goodsType;
|
@ApiModelProperty("支付方式(1=微信,2=余额,3=积分)")
|
private Integer paymentType;
|
@ApiModelProperty("订单状态(1待发货2待收货3待使用4已完成5已取消6已退款7售后中8已评价)")
|
private Integer status;
|
@ApiModelProperty("开始时间")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private LocalDateTime startTime;
|
@ApiModelProperty("结束时间")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private LocalDateTime endTime;
|
|
private Integer shopId;
|
private List<Long> appUserIds;
|
}
|