From a053811c774ac07340e46561f5d2ab4d892282a0 Mon Sep 17 00:00:00 2001
From: Administrator <1101184511@qq.com>
Date: 星期一, 29 七月 2024 02:38:40 +0800
Subject: [PATCH] 渠道功能完善

---
 src/main/java/com/taoke/autopay/service/agent/ChannelAgentService.java |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/src/main/java/com/taoke/autopay/service/agent/ChannelAgentService.java b/src/main/java/com/taoke/autopay/service/agent/ChannelAgentService.java
index 44928b2..943988b 100644
--- a/src/main/java/com/taoke/autopay/service/agent/ChannelAgentService.java
+++ b/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);
+
 }

--
Gitblit v1.8.0