huangjiayang
2025-05-14 8b258d16bd40ac4e81e49ae6dc030060ed3ee64e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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);
}