package com.dy.pmsGlobal.daoSta; 
 | 
  
 | 
import com.dy.pmsGlobal.pojoSta.StaWipSnEx; 
 | 
import org.apache.ibatis.annotations.Mapper; 
 | 
  
 | 
/** 
 | 
* @author User 
 | 
* @description 针对表【sta_wip_sn_ex(设备关联表)】的数据库操作Mapper 
 | 
* @createDate 2024-06-20 11:31:20 
 | 
* @Entity com.dy.pmsGlobal.pojoSta.StaWipSnEx 
 | 
*/ 
 | 
@Mapper 
 | 
public interface StaWipSnExMapper { 
 | 
  
 | 
    int deleteByPrimaryKey(Long id); 
 | 
  
 | 
    int insert(StaWipSnEx record); 
 | 
  
 | 
    int insertSelective(StaWipSnEx record); 
 | 
  
 | 
    StaWipSnEx selectByPrimaryKey(Long id); 
 | 
  
 | 
    int updateByPrimaryKeySelective(StaWipSnEx record); 
 | 
  
 | 
    int updateByPrimaryKey(StaWipSnEx record); 
 | 
  
 | 
} 
 |