From 7a0a3d837365330be38699894ce0167bade1de58 Mon Sep 17 00:00:00 2001
From: xiaogang <905166056@qq.com>
Date: 星期三, 07 十二月 2022 15:00:26 +0800
Subject: [PATCH] 1、优化报修通知信息2、优化缴费审核3、优化发布公告信息4、优化页面显示性问题
---
service-common/src/main/java/com/java110/common/dao/IMachineAuthServiceDao.java | 44 ++++++++++++++++++++++++--------------------
1 files changed, 24 insertions(+), 20 deletions(-)
diff --git a/service-common/src/main/java/com/java110/common/dao/IMachineAuthServiceDao.java b/service-common/src/main/java/com/java110/common/dao/IMachineAuthServiceDao.java
index 906dad0..97ea803 100755
--- a/service-common/src/main/java/com/java110/common/dao/IMachineAuthServiceDao.java
+++ b/service-common/src/main/java/com/java110/common/dao/IMachineAuthServiceDao.java
@@ -1,12 +1,6 @@
package com.java110.common.dao;
-
import com.java110.utils.exception.DAOException;
-import com.java110.entity.merchant.BoMerchant;
-import com.java110.entity.merchant.BoMerchantAttr;
-import com.java110.entity.merchant.Merchant;
-import com.java110.entity.merchant.MerchantAttr;
-
import java.util.List;
import java.util.Map;
@@ -15,60 +9,54 @@
* 璁惧鏉冮檺缁勪欢鍐呴儴涔嬮棿浣跨敤锛屾病鏈夌粰澶栧洿绯荤粺鎻愪緵鏈嶅姟鑳藉姏
* 璁惧鏉冮檺鏈嶅姟鎺ュ彛绫伙紝瑕佹眰鍏ㄩ儴浠ュ瓧绗︿覆浼犺緭锛屾柟渚垮井鏈嶅姟鍖�
* 鏂板缓瀹㈡埛锛屼慨鏀瑰鎴凤紝鍒犻櫎瀹㈡埛锛屾煡璇㈠鎴风瓑鍔熻兘
- *
+ * <p>
* Created by wuxw on 2016/12/27.
*/
public interface IMachineAuthServiceDao {
/**
* 淇濆瓨 璁惧鏉冮檺淇℃伅
+ *
* @param businessMachineAuthInfo 璁惧鏉冮檺淇℃伅 灏佽
* @throws DAOException 鎿嶄綔鏁版嵁搴撳紓甯�
*/
void saveBusinessMachineAuthInfo(Map businessMachineAuthInfo) throws DAOException;
-
-
/**
* 鏌ヨ璁惧鏉冮檺淇℃伅锛坆usiness杩囩▼锛�
* 鏍规嵁bId 鏌ヨ璁惧鏉冮檺淇℃伅
+ *
* @param info bId 淇℃伅
* @return 璁惧鏉冮檺淇℃伅
* @throws DAOException DAO寮傚父
*/
List<Map> getBusinessMachineAuthInfo(Map info) throws DAOException;
-
-
-
/**
* 淇濆瓨 璁惧鏉冮檺淇℃伅 Business鏁版嵁鍒� Instance涓�
+ *
* @param info
* @throws DAOException DAO寮傚父
*/
- void saveMachineAuthInfoInstance(Map info) throws DAOException;
-
-
-
+ int saveMachineAuthInfoInstance(Map info) throws DAOException;
/**
* 鏌ヨ璁惧鏉冮檺淇℃伅锛坕nstance杩囩▼锛�
* 鏍规嵁bId 鏌ヨ璁惧鏉冮檺淇℃伅
+ *
* @param info bId 淇℃伅
* @return 璁惧鏉冮檺淇℃伅
* @throws DAOException DAO寮傚父
*/
List<Map> getMachineAuthInfo(Map info) throws DAOException;
-
-
/**
* 淇敼璁惧鏉冮檺淇℃伅
+ *
* @param info 淇敼淇℃伅
* @throws DAOException DAO寮傚父
*/
- void updateMachineAuthInfoInstance(Map info) throws DAOException;
-
+ int updateMachineAuthInfoInstance(Map info) throws DAOException;
/**
* 鏌ヨ璁惧鏉冮檺鎬绘暟
@@ -78,4 +66,20 @@
*/
int queryMachineAuthsCount(Map info);
+ /**
+ * 娣诲姞鍛樺伐闂ㄧ鎺堟潈
+ *
+ * @param info
+ * @return
+ */
+ int saveMachineAuth(Map info);
+
+ /**
+ * 鍒犻櫎鍛樺伐闂ㄧ鎺堟潈
+ *
+ * @param info
+ * @return
+ */
+ int deleteMachineAuth(Map info);
+
}
--
Gitblit v1.8.0