package com.dy.pmsGlobal.daoPr; 
 | 
  
 | 
import com.dy.pmsGlobal.pojoPr.PrDevOpsPlan; 
 | 
import org.apache.ibatis.annotations.Mapper; 
 | 
import org.apache.ibatis.annotations.Param; 
 | 
  
 | 
import java.util.List; 
 | 
import java.util.Map; 
 | 
  
 | 
/** 
 | 
* @author 小明 
 | 
* @description 针对表【pr_dev_ops_plan(安装运维任务计划)】的数据库操作Mapper 
 | 
* @createDate 2024-05-29 15:53:10 
 | 
* @Entity com.dy.pmsGlobal.pojoPr.PrDevOpsPlan 
 | 
*/ 
 | 
@Mapper 
 | 
public interface PrDevOpsPlanMapper { 
 | 
  
 | 
    int deleteByPrimaryKey(Long id); 
 | 
  
 | 
    int insert(PrDevOpsPlan record); 
 | 
  
 | 
    int insertSelective(PrDevOpsPlan record); 
 | 
  
 | 
    PrDevOpsPlan selectByPrimaryKey(Long id); 
 | 
  
 | 
    int updateByPrimaryKeySelective(PrDevOpsPlan record); 
 | 
  
 | 
    int updateByPrimaryKey(PrDevOpsPlan record); 
 | 
  
 | 
    Long selectSomeCount(Map<String,Object> params); 
 | 
  
 | 
    List<PrDevOpsPlan> selectSome(Map<String,Object> params); 
 | 
  
 | 
    int deleteLogicById(Long id); 
 | 
  
 | 
    boolean exists(@Param("name") String name, @Param("id") Long id); 
 | 
} 
 |