|
@@ -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);
|
|
|
+
|
|
|
+}
|