fix(项目管理产品需求重构): 完善产品里程碑逻辑

支持根据创建人搜索需求规格

Signed-off-by: OTTO <731554297@qq.com>
This commit is contained in:
OTTO 2024-12-17 09:02:55 +08:00
parent 9e236c206d
commit feba3b82ed
2 changed files with 4 additions and 0 deletions

View File

@ -45,6 +45,9 @@ public class ProductReqSpecsSearchVo {
@ApiModelProperty(value = "产品需求类型")
private String type;
@ApiModelProperty(value = "创建人")
private String createBy;
/**
* 关联项目ID
*/

View File

@ -204,6 +204,7 @@
<include refid="selectPmsProductRequirementVo"/>
<where>
<if test="title != null and title != ''">and title like concat('%', #{title}, '%')</if>
<if test="createBy != null and createBy != ''">and create_by = #{createBy}</if>
<if test="pmsProductIdentifier != null ">and pms_product_identifier = #{pmsProductIdentifier}</if>
<if test="pmsProductPlanId != null ">and pms_product_plan_id = #{pmsProductPlanId}</if>
<if test="status != null and status != ''">and `status` in