admin
2024-07-29 734dfe9eb0a2176103dce8245c69b1194574c68e
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,19 @@
     **/
    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);
}