1
zj
8 days ago 7d008bf58373926bbdcf67fa7bcf92510f427fb6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.nq.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.nq.pojo.PayChnnel;
import com.nq.pojo.SitePay;
import java.util.List;
 
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.reflection.wrapper.BaseWrapper;
import org.springframework.stereotype.Repository;
 
public interface SitePayMapper extends BaseMapper<SitePay> {
  int deleteByPrimaryKey(Integer paramInteger);
  
//  int insert(SitePay paramSitePay);
  
  int insertSelective(SitePay paramSitePay);
  
  SitePay selectByPrimaryKey(Integer paramInteger);
  
  int updateByPrimaryKeySelective(SitePay paramSitePay);
  
  int updateByPrimaryKey(SitePay paramSitePay);
  
  SitePay findByChannelType(@Param("channelType") String paramString);
  
  List<SitePay> listByAdmin(@Param("channelType") String paramString);
  
  List getPayInfo();
}