diff --git a/hyp-system/src/main/java/com/hyp/system/domain/dto/ApplyInfoListDTO.java b/hyp-system/src/main/java/com/hyp/system/domain/dto/ApplyInfoListDTO.java
index 74d8237..7fad5fc 100644
--- a/hyp-system/src/main/java/com/hyp/system/domain/dto/ApplyInfoListDTO.java
+++ b/hyp-system/src/main/java/com/hyp/system/domain/dto/ApplyInfoListDTO.java
@@ -34,8 +34,8 @@ public class ApplyInfoListDTO extends BaseEntity {
/**
* 申请状态(0:待提交 1:待审核,2,评分,3退回)
*/
- @NotNull(message = "申请状态不能为空")
- private Integer applyStatus;
+ @NotBlank(message = "申请状态不能为空")
+ private String applyStatus;
/**
* 创建者id
diff --git a/hyp-system/src/main/resources/mapper/system/RewApplyInfoListMapper.xml b/hyp-system/src/main/resources/mapper/system/RewApplyInfoListMapper.xml
index 8b9a6af..853e8fd 100644
--- a/hyp-system/src/main/resources/mapper/system/RewApplyInfoListMapper.xml
+++ b/hyp-system/src/main/resources/mapper/system/RewApplyInfoListMapper.xml
@@ -44,8 +44,9 @@
and t.create_by like concat('%',#{createBy},'%')
-
- and t.apply_status = #{applyStatus,jdbcType=INTEGER}
+
+ and apply_status in
+ '${item}'
order by t.update_time desc