mitao
2025-03-26 15b3e7a59fd14e802a5e48a8310e1cb8cb689bc7
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
package com.ruoyi.system.query;
 
import com.ruoyi.common.core.domain.BasePage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "报修列表查询query")
public class TFaultRepairMessageQuery extends BasePage {
 
    @ApiModelProperty(value = "提交人姓名")
    private String residentName;
 
    @ApiModelProperty(value = "联系电话")
    private String contactNumber;
 
    @ApiModelProperty(value = "状态 1=待处理 2=已处理")
    private Integer status;
 
    @ApiModelProperty(value = "报修类型 1=常规维修 2=紧急抢修")
    private Integer repairType;
 
    @ApiModelProperty(value = "处理人")
    private String handlePerson;
 
    @ApiModelProperty(value = "营业部id", hidden = true)
    private String businessDeptId;
}