Browse Source

新增代码提交

maamin1 7 years ago
parent
commit
bcea68f222

+ 20 - 0
ccb_fund_trusteeship/src/main/java/com/fuzamei/mapperInterface/AccountInfoInterface.java

@@ -0,0 +1,20 @@
+package com.fuzamei.mapperInterface;
+
+import java.util.List;
+import java.util.Map;
+
+import org.apache.ibatis.annotations.Param;
+
+import com.fuzamei.entity.AccountInfo;
+
+public interface AccountInfoInterface {
+
+	List<AccountInfo> getAllAccount();
+
+	int insertAccountInfo(List<Map<String, Object>> accountList);
+
+	List<AccountInfo> getAccountInfoByUser(String userId);
+
+	int updateBatchAccountById(@Param("parameter")Map<String, Map<String, Object>> parameter, @Param("cloumn")List<String> cloumn);
+	
+}

+ 12 - 0
ccb_fund_trusteeship/src/main/java/com/fuzamei/mapperInterface/RoleInterface.java

@@ -0,0 +1,12 @@
+package com.fuzamei.mapperInterface;
+
+import java.util.List;
+
+import com.fuzamei.entity.Role;
+
+
+public interface RoleInterface {
+
+	List<Role> getAllRoles();
+
+}

+ 14 - 0
ccb_fund_trusteeship/src/main/java/com/fuzamei/mapperInterface/TokenInterface.java

@@ -0,0 +1,14 @@
+package com.fuzamei.mapperInterface;
+
+import com.fuzamei.entity.Token;
+import com.fuzamei.entity.User;
+
+public interface TokenInterface {
+
+	Token getTokenById(Token token);
+
+	int insertToken(Token token);
+
+	int updateToken(Token token);
+	
+}

+ 10 - 0
ccb_fund_trusteeship/src/main/java/com/fuzamei/mapperInterface/UserAccountInterface.java

@@ -0,0 +1,10 @@
+package com.fuzamei.mapperInterface;
+
+import java.util.List;
+import java.util.Map;
+
+public interface UserAccountInterface {
+
+	int insertUserAccount(List<Map<String, Object>> accountList);
+
+}