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 { 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 listByAdmin(@Param("channelType") String paramString); List getPayInfo(); }