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