Newer
Older
huludao / src / main / java / com / newfiber / api / pc / dao / MeetPlanMapper.java
@新烽开发者 新烽开发者 on 19 Jul 536 bytes init
package com.newfiber.api.pc.dao;

import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.newfiber.api.pc.model.meet.MeetPlan;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;

/**
 * @Author:zzh
 * @CreateDate:2020/11/25 17:13
 * @Description:
 */
@Repository
public interface MeetPlanMapper extends BaseMapper<MeetPlan> {
    /**
     * 根据预案id,查询预案详情数据
     * @param id
     * @return
     */
    MeetPlan selectMeetPlanInfoById(@Param("id") Integer id);
}