zhubaomin
2025-04-08 95d8d3df562c8f7fca74ba994cddbbf41564488e
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);
}