feat: 复审计划增加复审结果筛选
This commit is contained in:
+3
@@ -130,6 +130,9 @@ public class ESQueryCommonDTO {
|
||||
@ApiModelProperty(value = "复审计划-主起草单位")
|
||||
private String mainDraftingUnit;
|
||||
|
||||
@ApiModelProperty(value = "复审计划-复审结果")
|
||||
private String recheckResult;
|
||||
|
||||
public void transIdsToList() {
|
||||
if (StrUtil.isBlank(this.selections)) {
|
||||
return;
|
||||
|
||||
+5
-1
@@ -71,9 +71,13 @@
|
||||
<if test="param.mainDraftingUnit != null and param.mainDraftingUnit != ''">
|
||||
AND s.main_drafting_unit = #{param.mainDraftingUnit}
|
||||
</if>
|
||||
<!--复审结果-->
|
||||
<if test="param.recheckResult != null and param.recheckResult != ''">
|
||||
AND p.recheck_result IN #{param.recheckResult}
|
||||
</if>
|
||||
GROUP BY
|
||||
s.standard_number, p.create_time
|
||||
ORDER BY
|
||||
p.create_time DESC
|
||||
</select>
|
||||
</select>
|
||||
</mapper>
|
||||
|
||||
Reference in New Issue
Block a user