1.修改项目查询功能中组织条件查询失败问题
This commit is contained in:
parent
c5ac4f8869
commit
58de38d518
|
@ -32,5 +32,7 @@ public class BiddingProjectEntitySearchInputVo extends SearchInputVo {
|
||||||
private Integer taskStatus;
|
private Integer taskStatus;
|
||||||
@ApiModelProperty("信息发布")
|
@ApiModelProperty("信息发布")
|
||||||
private String infoPublish;
|
private String infoPublish;
|
||||||
|
@ApiModelProperty("组织形式")
|
||||||
|
private String organizationalForm;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -83,6 +83,9 @@
|
||||||
<if test=" inputVo.taskStatus != null ">
|
<if test=" inputVo.taskStatus != null ">
|
||||||
and p.check_flag = #{inputVo.taskStatus}
|
and p.check_flag = #{inputVo.taskStatus}
|
||||||
</if>
|
</if>
|
||||||
|
<if test=" inputVo.organizationalForm != null ">
|
||||||
|
and p.organizational_form = #{inputVo.organizationalForm}
|
||||||
|
</if>
|
||||||
</where>
|
</where>
|
||||||
order by od desc,p.check_flag desc,p.create_time desc
|
order by od desc,p.check_flag desc,p.create_time desc
|
||||||
</select>
|
</select>
|
||||||
|
@ -149,6 +152,9 @@
|
||||||
<if test=" inputVo.taskStatus != null ">
|
<if test=" inputVo.taskStatus != null ">
|
||||||
and p.check_flag = #{inputVo.taskStatus}
|
and p.check_flag = #{inputVo.taskStatus}
|
||||||
</if>
|
</if>
|
||||||
|
<if test=" inputVo.organizationalForm != null ">
|
||||||
|
and p.organizational_form = #{inputVo.organizationalForm}
|
||||||
|
</if>
|
||||||
</where>
|
</where>
|
||||||
order by od desc,p.check_flag desc,p.create_time desc
|
order by od desc,p.check_flag desc,p.create_time desc
|
||||||
</select>
|
</select>
|
||||||
|
@ -215,6 +221,9 @@
|
||||||
<if test=" inputVo.taskStatus != null ">
|
<if test=" inputVo.taskStatus != null ">
|
||||||
and p.check_flag = #{inputVo.taskStatus}
|
and p.check_flag = #{inputVo.taskStatus}
|
||||||
</if>
|
</if>
|
||||||
|
<if test=" inputVo.organizationalForm != null ">
|
||||||
|
and p.organizational_form = #{inputVo.organizationalForm}
|
||||||
|
</if>
|
||||||
</where>
|
</where>
|
||||||
order by od desc,p.check_flag desc,p.create_time desc
|
order by od desc,p.check_flag desc,p.create_time desc
|
||||||
</select>
|
</select>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user