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