mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-09 02:46:50 +08:00
注销报错
This commit is contained in:
@@ -40,5 +40,5 @@ public interface ICasesRecommendPushRecordService {
|
||||
* @param caseRecommendId
|
||||
* @return
|
||||
*/
|
||||
boolean startRead(String caseRecommendId)
|
||||
boolean startRead(String caseRecommendId);
|
||||
}
|
||||
|
||||
@@ -918,8 +918,8 @@ public class CasesServiceImpl implements ICasesService {
|
||||
List<Cases> result = new ArrayList<>();
|
||||
try {
|
||||
String hql = "select a.caseId FROM CasesRecommendPushRecord a left join Cases b ON a.caseId = b.id WHERE a.pushUserId=?1 and a.pushStatus=3 and b.deleted = false group by a.caseId ORDER By a.pushTime DESC";
|
||||
// List<String> listFields = casesRecommendDao.findListFields(hql, CASE_LEN, ListUtil.toList(accountId));
|
||||
List<String> listFields = new ArrayList<>();
|
||||
List<String> listFields = casesRecommendDao.findListFields(hql, CASE_LEN, ListUtil.toList(accountId));
|
||||
// List<String> listFields = new ArrayList<>();
|
||||
List<String> caseIds = new ArrayList<>();
|
||||
if (CollUtil.isNotEmpty(listFields)) {
|
||||
for (String objs : listFields) {
|
||||
|
||||
Reference in New Issue
Block a user