package com.matrix.system.shopXcx.dao; 
 | 
  
 | 
import org.apache.ibatis.annotations.Param; 
 | 
import java.util.List; 
 | 
import java.util.Map; 
 | 
import com.matrix.core.pojo.PaginationVO; 
 | 
import com.matrix.system.shopXcx.bean.WxApplyOrderRelate; 
 | 
  
 | 
/** 
 | 
 * @description 提现订单关联 
 | 
 * @author wzy 
 | 
 * @date 2020-02-16 20:55 
 | 
 */ 
 | 
public interface WxApplyOrderRelateDao{ 
 | 
  
 | 
    public int insert(@Param("item") WxApplyOrderRelate wxApplyOrderRelate); 
 | 
        
 | 
       public int batchInsert(@Param("list") List<WxApplyOrderRelate> wxApplyOrderRelateList); 
 | 
        
 | 
    public int updateByMap(Map<String, Object> modifyMap); 
 | 
     
 | 
    public int updateByModel(@Param("record") WxApplyOrderRelate wxApplyOrderRelate); 
 | 
     
 | 
    public int deleteByIds(@Param("list") List<String> list); 
 | 
     
 | 
    public int deleteById(Long id); 
 | 
  
 | 
    public int deleteByModel(@Param("record") WxApplyOrderRelate wxApplyOrderRelate); 
 | 
     
 | 
    public List<WxApplyOrderRelate> selectInPage(@Param("record") WxApplyOrderRelate wxApplyOrderRelate, @Param("pageVo") PaginationVO pageVo); 
 | 
  
 | 
    public List<WxApplyOrderRelate> selectByModel(@Param("record") WxApplyOrderRelate wxApplyOrderRelate); 
 | 
     
 | 
    public int selectTotalRecord(@Param("record") WxApplyOrderRelate wxApplyOrderRelate); 
 | 
     
 | 
    public WxApplyOrderRelate  selectById(Long id); 
 | 
     
 | 
    public WxApplyOrderRelate  selectForUpdate(Long id); 
 | 
     
 | 
} 
 |