feat(项目管理-项目):根据产品id查询项目列表
This commit is contained in:
parent
4224d1fb2d
commit
701945970f
|
@ -21,4 +21,7 @@ public class PmsProjectSearchVo extends BaseEntity{
|
||||||
@ApiModelProperty(value = "是否根据更新时间降序排序")
|
@ApiModelProperty(value = "是否根据更新时间降序排序")
|
||||||
private Boolean isDescByUpdateTime=true;
|
private Boolean isDescByUpdateTime=true;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "产品id")
|
||||||
|
private Long pmsProductId;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -59,6 +59,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<where>
|
<where>
|
||||||
<if test="projectName != null and projectName != ''"> and project_name like concat('%', #{projectName}, '%')</if>
|
<if test="projectName != null and projectName != ''"> and project_name like concat('%', #{projectName}, '%')</if>
|
||||||
<if test="projectAssigneeId != null "> and project_assignee_id = #{projectAssigneeId}</if>
|
<if test="projectAssigneeId != null "> and project_assignee_id = #{projectAssigneeId}</if>
|
||||||
|
<if test="pmsProductId != null "> and pms_product_id = #{pmsProductId}</if>
|
||||||
<if test="status != null and status != ''"> and status = #{status}</if>
|
<if test="status != null and status != ''"> and status = #{status}</if>
|
||||||
<!-- 数据范围过滤 -->
|
<!-- 数据范围过滤 -->
|
||||||
${params.dataScope}
|
${params.dataScope}
|
||||||
|
|
Loading…
Reference in New Issue