package com.matrix.system.app.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
|
/**
|
* @author wzy
|
* @date 2020-12-23
|
**/
|
@ApiModel(value = "OrderListDto", description = "订单列表接收参数类")
|
public class OrderListDto extends BasePageDto {
|
|
@ApiModelProperty(value = "订单状态", example = "已付款 全部默认传空字符串")
|
private String status;
|
|
@ApiModelProperty(value = "查询字段")
|
private String queryKey;
|
|
@ApiModelProperty(hidden = true)
|
private Long shopId;
|
|
public Long getShopId() {
|
return shopId;
|
}
|
|
public void setShopId(Long shopId) {
|
this.shopId = shopId;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
public String getQueryKey() {
|
return queryKey;
|
}
|
|
public void setQueryKey(String queryKey) {
|
this.queryKey = queryKey;
|
}
|
|
}
|