package com.matrix.system.shopXcx.api.dto;
|
|
import com.matrix.core.pojo.PaginationDto;
|
import com.matrix.system.app.dto.BasePageDto;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
|
/**
|
* @author jyy
|
* @date 2020-12-24
|
**/
|
@ApiModel(value = "ErpServiceOrderListDto", description = "服务单列表参数接收类")
|
public class ErpServiceOrderListDto extends PaginationDto {
|
|
@ApiModelProperty(value = "查询参数")
|
private String queryKey;
|
|
@ApiModelProperty(value = "客户视角状态 0/全部 1/待确认 2进行中(待排班/待配料/待服务/服务中) 3/待评价(已完成/服务结束) 4/已评价 5/已取消 ")
|
private String vipStatus;
|
|
@ApiModelProperty(value = "客户ID")
|
private Long vipId;
|
|
public String getVipStatus() {
|
return vipStatus;
|
}
|
|
public void setVipStatus(String vipStatus) {
|
this.vipStatus = vipStatus;
|
}
|
|
public Long getVipId() {
|
return vipId;
|
}
|
|
public void setVipId(Long vipId) {
|
this.vipId = vipId;
|
}
|
|
public String getQueryKey() {
|
return queryKey;
|
}
|
|
public void setQueryKey(String queryKey) {
|
this.queryKey = queryKey;
|
}
|
|
|
|
}
|