Merge branch '20231124' of http://221.226.25.34:3000/dxfeng/weaver-hrm-recruit into feature/dxf

This commit is contained in:
dxfeng 2024-01-31 15:48:17 +08:00
commit c09c1d7675
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 + ")");