Commit c08b7307 by zhangxingmin

push

parent 54e0cb45
......@@ -3,6 +3,8 @@ package com.yd.product.feign.request.relprojectproductlaunch;
import com.yd.common.dto.PageDto;
import lombok.Data;
import java.util.List;
@Data
public class ApiRelProjectProductLaunchPageRequest extends PageDto {
......@@ -20,4 +22,9 @@ public class ApiRelProjectProductLaunchPageRequest extends PageDto {
* 产品名称
*/
private String productName;
/**
* 产品上架信息表唯一业务ID列表
*/
private List<String> productLaunchBizIdList;
}
......@@ -18,6 +18,13 @@
<if test="request.productName != null and request.productName != ''">
and (p.product_name like concat('%', #{request.productName}, '%') or pl.title like concat('%', #{request.productName}, '%'))
</if>
<if test="request.productLaunchBizIdList != null and request.productLaunchBizIdList.size > 0">
and rppl.product_launch_biz_id in
<foreach collection="request.productLaunchBizIdList" item="item" index="index" open="(" separator=","
close=")">
#{item}
</foreach>
</if>
and rppl.is_deleted = 0
</where>
</select>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment