Browse Source

数据统计接口

jz.kai 1 year ago
parent
commit
d2ae6ee89a

+ 3 - 1
common/src/main/java/com/jpsoft/employment/modules/base/dao/WishInfoUserRecordDAO.java

@@ -1,6 +1,8 @@
 package com.jpsoft.employment.modules.base.dao;
 
 import java.util.List;
+
+import org.apache.ibatis.annotations.Param;
 import org.springframework.stereotype.Repository;
 import com.jpsoft.employment.modules.base.entity.WishInfoUserRecord;
 import java.util.Map;
@@ -17,5 +19,5 @@ public interface WishInfoUserRecordDAO {
 	List<WishInfoUserRecord> search(Map<String, Object> searchParams, List<Sort> sortList);
 	int countByWish(String wishInfoId);
 	String getLastSerialNumber(String date);
-	int countByUser(String regUserId);
+	int countByUser(@Param(value="regUserId") String regUserId);
 }