移除黑名单BUG修复

This commit is contained in:
dxfeng 2024-01-31 15:47:54 +08:00
parent 0cf9165ac6
commit 654810f856
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ public class TalentPoolServiceImpl extends Service implements TalentPoolService
public Map<String, Object> removeBlacklist(Map<String, Object> param) {
String ids = Util.null2String(param.get("ids"));
if (StringUtils.isBlank(ids)) {
throw new CustomizeRunTimeException("");
throw new CustomizeRunTimeException("请至少选择一条数据");
}
RecordSet rs = new RecordSet();
rs.executeUpdate("update uf_jcl_rck set sfjrhmd = 1 where id in (" + ids + ")");