jyy
2021-01-16 c0dc765ad93846078718bb15976905c34db7584c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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;
    }
 
 
 
}