package com.aps.core.mapper;
|
|
import com.aps.core.domain.ApsPlanCycle;
|
import com.aps.core.domain.ApsPlanManagement;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Select;
|
|
import java.util.List;
|
|
/**
|
* 计划周期管理Mapper接口
|
*
|
* @author ruoyi
|
* @date 2025-05-13
|
*/
|
public interface ApsPlanCycleMapper extends BaseMapper<ApsPlanCycle>
|
{
|
|
@Select("select * from aps_plan_cycle where plan_id = #{planId}")
|
ApsPlanCycle selectByPlanId(Long planId);
|
|
@Select("""
|
<script>
|
select * from aps_plan_cycle where 1 = 0
|
<if test="!planIds.isEmpty()">or plan_id in
|
<foreach collection="planIds" item="item" open="(" separator="," close=")">
|
#{item}
|
</foreach>
|
</if>
|
</script>
|
""")
|
List<ApsPlanCycle> selectByPlanIds(List<Long> planIds);
|
}
|