zhubaomin
2025-04-11 9f3c4a33279f10ed420d604765487558ab0744f0
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoIr/IrPlanOperateMapper.java
New file
@@ -0,0 +1,27 @@
package com.dy.pipIrrGlobal.daoIr;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoIr.IrPlanOperate;
import org.apache.ibatis.annotations.Mapper;
/**
 * @author ZhuBaoMin
 * @date 2025-02-21 11:11
 * @LastEditTime 2025-02-21 11:11
 * @Description
 */
@Mapper
public interface IrPlanOperateMapper extends BaseMapper<IrPlanOperate> {
    int deleteByPrimaryKey(Long id);
    int insert(IrPlanOperate record);
    int insertSelective(IrPlanOperate record);
    IrPlanOperate selectByPrimaryKey(Long id);
    int updateByPrimaryKeySelective(IrPlanOperate record);
    int updateByPrimaryKey(IrPlanOperate record);
}