liurunyu
2025-04-27 7634d7ff15b1fa84ea84a51a1ba6e45b11a4aa21
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoIr/IrPlanScheduleMapper.java
New file
@@ -0,0 +1,27 @@
package com.dy.pipIrrGlobal.daoIr;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoIr.IrPlanSchedule;
import org.apache.ibatis.annotations.Mapper;
/**
 * @author ZhuBaoMin
 * @date 2025-03-20 15:03
 * @LastEditTime 2025-03-20 15:03
 * @Description
 */
@Mapper
public interface IrPlanScheduleMapper extends BaseMapper<IrPlanSchedule> {
    int deleteByPrimaryKey(Long id);
    int insert(IrPlanSchedule record);
    int insertSelective(IrPlanSchedule record);
    IrPlanSchedule selectByPrimaryKey(Long id);
    int updateByPrimaryKeySelective(IrPlanSchedule record);
    int updateByPrimaryKey(IrPlanSchedule record);
}