xuhy
2025-09-30 7018084c29844b1a53a7376ccefc95065adbaa4f
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
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 TMissionQuery extends BasePage {
 
    @ApiModelProperty(value = "紧急程度 1=一般 2=加急 3=特急")
    private Integer urgencyLevel;
 
    @ApiModelProperty(value = "任务内容")
    private String missionContent;
 
    @ApiModelProperty(value = "负责人")
    private String chargePerson;
 
    @ApiModelProperty(value = "状态 1=待指派 2=待完成 3=待评分 4=已完成 5=待改派")
    private Integer status;
 
    @ApiModelProperty(value = "类型 1=改派 2=支援 改派支援审核使用")
    private Integer reassignType;
}