package com.dy.pmsGlobal.daoSta; 
 | 
  
 | 
import com.dy.pmsGlobal.pojoSta.StaRepairInfo; 
 | 
import org.apache.ibatis.annotations.Mapper; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
* @author User 
 | 
* @description 针对表【sta_repair_info】的数据库操作Mapper 
 | 
* @createDate 2024-06-20 11:31:20 
 | 
* @Entity com.dy.pmsGlobal.pojoSta.StaRepairInfo 
 | 
*/ 
 | 
@Mapper 
 | 
public interface StaRepairInfoMapper { 
 | 
  
 | 
    int deleteByPrimaryKey(Long id); 
 | 
  
 | 
    int insert(StaRepairInfo record); 
 | 
  
 | 
    int insertSelective(StaRepairInfo record); 
 | 
  
 | 
    StaRepairInfo selectByPrimaryKey(Long id); 
 | 
  
 | 
    int updateByPrimaryKeySelective(StaRepairInfo record); 
 | 
  
 | 
    int updateByPrimaryKey(StaRepairInfo record); 
 | 
  
 | 
    List<StaRepairInfo> selectByDeviceNo(String deviceNo); 
 | 
} 
 |