package com.dy.pmsGlobal.daoTst; 
 | 
  
 | 
import com.dy.pmsGlobal.pojoTst.TstCommand; 
 | 
import org.apache.ibatis.annotations.Mapper; 
 | 
import org.apache.ibatis.annotations.Param; 
 | 
  
 | 
import java.util.List; 
 | 
import java.util.Map; 
 | 
  
 | 
/** 
 | 
* @author User 
 | 
* @description 针对表【tst_command】的数据库操作Mapper 
 | 
* @createDate 2024-10-16 15:50:25 
 | 
* @Entity com.dy.pmsGlobal.pojoTst.TstCommand 
 | 
*/ 
 | 
@Mapper 
 | 
public interface TstCommandMapper { 
 | 
  
 | 
    int deleteByPrimaryKey(Long id); 
 | 
  
 | 
    int insert(TstCommand record); 
 | 
  
 | 
    int insertSelective(TstCommand record); 
 | 
  
 | 
    int deleteLogicById(Long id); 
 | 
  
 | 
    TstCommand selectByPrimaryKey(Long id); 
 | 
  
 | 
    Long selectByNameId(@Param("id") Long id,@Param("proId") Long proId, @Param("name") String name); 
 | 
  
 | 
    List<TstCommand> selectAll(); 
 | 
  
 | 
    Long selectSomeCount(Map<String,Object> params); 
 | 
  
 | 
    List<TstCommand> selectSome(Map<String,Object> params); 
 | 
  
 | 
    int updateByPrimaryKeySelective(TstCommand record); 
 | 
  
 | 
    int updateByPrimaryKey(TstCommand record); 
 | 
  
 | 
} 
 |