Administrator
2025-04-21 a217652d33c75df23202828000d82d0ca8555ac2
src/main/java/com/taoke/autopay/service/agent/ChannelAgentService.java
@@ -22,7 +22,7 @@
     * @param: agent
     * @return void
     **/
    public void addChannelAgent(ChannelAgent agent) throws ChannelAgentException;
    public ChannelAgent addChannelAgent(ChannelAgent agent) throws ChannelAgentException;
    /**
     * @author hxh
@@ -35,10 +35,21 @@
     **/
    public void setAlipayAccount(Long agengId,String name,String account) throws ChannelAgentException;
    public ChannelAgent selectByPrimaryKey(Long agengId);
    public void updateSelective(ChannelAgent agent);
    public List<ChannelAgent> list(ChannelAgentMapper.DaoQuery query);
    public long count(ChannelAgentMapper.DaoQuery query);
    public void delete(Long id);
    public ChannelAgent login(String account,String pwd) throws  ChannelAgentException;
    public ChannelAgent selectByAlias(String alias);
    public List<ChannelAgent> listByIds(List<Long> ids);
}