Commit abacd73e authored by 廖旭伟's avatar 廖旭伟

增加自助终端应用下架接口

parent 61eb0de2
...@@ -177,11 +177,6 @@ public class SstAppsServiceImpl extends AbstractCRUDServiceImpl<SstAppsDao, SstA ...@@ -177,11 +177,6 @@ public class SstAppsServiceImpl extends AbstractCRUDServiceImpl<SstAppsDao, SstA
public void forbidden(Long appId, Long userId) { public void forbidden(Long appId, Long userId) {
Map<String,Object> condition = new HashMap<>(); Map<String,Object> condition = new HashMap<>();
condition.put("appId",appId); condition.put("appId",appId);
Map<String,Object> data = new HashMap<>(); this.dao.delete(condition);
data.put("showBasic",0);
data.put("showHot",0);
data.put("updateUserId",userId);
data.put("updateTime",new Date());
this.dao.update(data,condition);
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment