package com.doumee.dao.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* 小程序端-我的订单查询请求
|
* @author rk
|
* @date 2026/04/15
|
*/
|
@Data
|
@ApiModel("会员订单查询请求")
|
public class MyOrderDTO implements Serializable {
|
|
@ApiModelProperty(value = "订单状态(可选,不传查全部)", example = "0")
|
private Integer status;
|
|
@ApiModelProperty(value = "合并状态(可选,不传查全部): 0=待支付 1=待核验 2=待配送 3=待收货 4=已完成 5=退款", example = "0")
|
private Integer combinedStatus;
|
|
}
|