feat(项目管理-项目):根据产品id查询项目列表

This commit is contained in:
wanjia 2023-11-22 09:14:59 +08:00
parent 4224d1fb2d
commit 701945970f
2 changed files with 4 additions and 0 deletions

View File

@ -21,4 +21,7 @@ public class PmsProjectSearchVo extends BaseEntity{
@ApiModelProperty(value = "是否根据更新时间降序排序")
private Boolean isDescByUpdateTime=true;
@ApiModelProperty(value = "产品id")
private Long pmsProductId;
}

View File

@ -59,6 +59,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<where>
<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="pmsProductId != null "> and pms_product_id = #{pmsProductId}</if>
<if test="status != null and status != ''"> and status = #{status}</if>
<!-- 数据范围过滤 -->
${params.dataScope}