1.修改项目查询功能中组织条件查询失败问题
This commit is contained in:
parent
c5ac4f8869
commit
58de38d518
|
@ -28,7 +28,7 @@ import java.util.*;
|
|||
public class CheckProjectController {
|
||||
|
||||
private final ICheckProjectService service;
|
||||
|
||||
|
||||
@PostMapping("/checkNameUnique")
|
||||
@ApiOperation("检查标书名称是否存在")
|
||||
@AutoLog(value = "检查标书名称是否存在", operationType = OperationTypeEnum.SELECT, module = "招标项目管理")
|
||||
|
|
|
@ -32,5 +32,7 @@ public class BiddingProjectEntitySearchInputVo extends SearchInputVo {
|
|||
private Integer taskStatus;
|
||||
@ApiModelProperty("信息发布")
|
||||
private String infoPublish;
|
||||
@ApiModelProperty("组织形式")
|
||||
private String organizationalForm;
|
||||
|
||||
}
|
||||
|
|
|
@ -83,6 +83,9 @@
|
|||
<if test=" inputVo.taskStatus != null ">
|
||||
and p.check_flag = #{inputVo.taskStatus}
|
||||
</if>
|
||||
<if test=" inputVo.organizationalForm != null ">
|
||||
and p.organizational_form = #{inputVo.organizationalForm}
|
||||
</if>
|
||||
</where>
|
||||
order by od desc,p.check_flag desc,p.create_time desc
|
||||
</select>
|
||||
|
@ -149,6 +152,9 @@
|
|||
<if test=" inputVo.taskStatus != null ">
|
||||
and p.check_flag = #{inputVo.taskStatus}
|
||||
</if>
|
||||
<if test=" inputVo.organizationalForm != null ">
|
||||
and p.organizational_form = #{inputVo.organizationalForm}
|
||||
</if>
|
||||
</where>
|
||||
order by od desc,p.check_flag desc,p.create_time desc
|
||||
</select>
|
||||
|
@ -215,6 +221,9 @@
|
|||
<if test=" inputVo.taskStatus != null ">
|
||||
and p.check_flag = #{inputVo.taskStatus}
|
||||
</if>
|
||||
<if test=" inputVo.organizationalForm != null ">
|
||||
and p.organizational_form = #{inputVo.organizationalForm}
|
||||
</if>
|
||||
</where>
|
||||
order by od desc,p.check_flag desc,p.create_time desc
|
||||
</select>
|
||||
|
|
Loading…
Reference in New Issue
Block a user