package com.dy.pmsGlobal.daoPr; 
 | 
  
 | 
import com.dy.pmsGlobal.pojoPlt.PltProductParams; 
 | 
import com.dy.pmsGlobal.pojoPr.PrOrderItem; 
 | 
import org.apache.ibatis.annotations.Mapper; 
 | 
  
 | 
/** 
 | 
* @author User 
 | 
* @description 针对表【pr_order_item】的数据库操作Mapper 
 | 
* @createDate 2024-08-19 14:41:42 
 | 
* @Entity com.dy.pmsGlobal.pojoPr.PrOrderItem 
 | 
*/ 
 | 
@Mapper 
 | 
public interface PrOrderItemMapper { 
 | 
  
 | 
    int deleteByPrimaryKey(Long id); 
 | 
  
 | 
    int insert(PrOrderItem record); 
 | 
  
 | 
    int insertSelective(PrOrderItem record); 
 | 
  
 | 
    PrOrderItem selectByPrimaryKey(Long id); 
 | 
  
 | 
    int updateByPrimaryKeySelective(PrOrderItem record); 
 | 
  
 | 
} 
 |