新增状态管理查询

This commit is contained in:
cdf
2024-06-05 15:19:33 +08:00
parent 4045944558
commit f8b45d44ab
5 changed files with 23 additions and 0 deletions

View File

@@ -95,6 +95,12 @@ public class SurveyPlanParam implements Serializable {
*/
String deptIndex;
/**
* 计划状态(1:审批中2审批通过3审批不通过4已取消)
*/
@ApiModelProperty(value = "计划状态")
private Integer status;
}
}

View File

@@ -102,6 +102,12 @@ public class SurveyTestParam implements Serializable {
@EqualsAndHashCode(callSuper = true)
public static class SurveyTestQueryParam extends BaseParam {
/**
* 测试审批状态(1:审批中2审批通过3审批不通过4已取消)
*/
@ApiModelProperty(value = "测试审批状态")
private Integer status;
}
}