fix(项目管理产品需求重构): 完善产品里程碑
修复产品里程碑下获取到错误的需求规格 Signed-off-by: OTTO <731554297@qq.com>
This commit is contained in:
parent
56fc58cf3b
commit
e063d79c50
|
|
@ -30,12 +30,12 @@ public class ProductReqSpecsSearchVo {
|
|||
@NotNull
|
||||
private String pmsProductIdentifier;
|
||||
|
||||
/**
|
||||
* 关联产品模块ID
|
||||
*/
|
||||
@ApiModelProperty(value = "关联产品模块ID(传0查询不属于任何模块的需求)")
|
||||
private Long pmsProductModuleId;
|
||||
|
||||
@ApiModelProperty(value = "关联产品里程碑ID")
|
||||
private Long pmsProductPlanId;
|
||||
|
||||
@ApiModelProperty(value = "产品需求状态(全部状态请传空)(可通过逗号分割传多个状态)")
|
||||
private String status;
|
||||
|
||||
|
|
|
|||
|
|
@ -205,6 +205,7 @@
|
|||
<where>
|
||||
<if test="title != null and title != ''">and title like concat('%', #{title}, '%')</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
|
||||
<foreach item="item" collection="statusList" open="(" separator="," close=")">
|
||||
#{item}
|
||||
|
|
|
|||
Loading…
Reference in New Issue