修改培训状态错误bug

limingyu-20240401-app登录曹实业判断修改
liujun 2024-03-20 17:14:59 +08:00
parent 30e064b7c5
commit 5a4ee4ce7c
1 changed files with 4 additions and 4 deletions

View File

@ -1064,6 +1064,10 @@ public class XgfUserServiceImpl implements XgfUserService {
}
private String getType(String corpInfoId) {
// created bu liu jun - 港务局要求,可以直接指定集团单位
if ("1".equals(corpInfoId)) {
return "2";
}
// 集团单位id
// (河港机械 jtdw002 1e6dbbe16004402f8d2c0e52afd9a676
// (河港港工 jtdw003 3a854eefa7894e06aaa1a2611bca80f6
@ -1073,10 +1077,6 @@ public class XgfUserServiceImpl implements XgfUserService {
if (jituandanwei.contains(corpInfoId)) {
return "1";
}
// created bu liu jun - 港务局要求,可以直接指定集团单位
if ("1".equals(corpInfoId)) {
return "2";
}
return "0";
}