package com.dy.pmsGlobal.daoOth; 
 | 
  
 | 
import com.dy.pmsGlobal.pojoOth.OthFile; 
 | 
import org.apache.ibatis.annotations.Mapper; 
 | 
  
 | 
@Mapper 
 | 
public interface OthFileMapper { 
 | 
    OthFile selectByPrimaryKey(Long id); 
 | 
  
 | 
    int insert(OthFile record); 
 | 
  
 | 
    int insertSelective(OthFile record); 
 | 
  
 | 
    int updateByPrimaryKeySelective(OthFile record); 
 | 
  
 | 
    int updateByPrimaryKey(OthFile record); 
 | 
  
 | 
    int deleteByPrimaryKey(Long id); 
 | 
} 
 |