|
|
@@ -101,7 +101,6 @@ public class UserArchivesInterviewServiceImpl extends BaseMybatisDao<UserArchive
|
|
|
if (!myUserDetailsBos.isEmpty()){
|
|
|
MyUserDetailsBo myUserDetailsBo = myUserDetailsBos.get(0);
|
|
|
in.setFirstInterviewDate(myUserDetailsBo.getReleaseStart());
|
|
|
-
|
|
|
}
|
|
|
//添加客户档案面谈记录表
|
|
|
if (in.getType()==1){
|
|
|
@@ -151,13 +150,13 @@ public class UserArchivesInterviewServiceImpl extends BaseMybatisDao<UserArchive
|
|
|
private void JudgePram(StringBuilder sb,Object use, Object in, String name) {
|
|
|
if (use instanceof String){
|
|
|
if (!Objects.equals(use,in)) {
|
|
|
- sb.append(name).append("[").append(use).append("=> ").append(in).append("];");
|
|
|
+ sb.append(name).append("[").append(use).append(" => ").append(in).append("];");
|
|
|
}
|
|
|
}
|
|
|
if (use instanceof BigDecimal){
|
|
|
BigDecimal inDb = BigDecimal.valueOf(Double.parseDouble(in.toString()));
|
|
|
if (inDb.compareTo((BigDecimal) use)!=0) {
|
|
|
- sb.append(name).append("[").append(use).append("=> ").append(inDb).append("];");
|
|
|
+ sb.append(name).append("[").append(use).append(" => ").append(inDb).append("];");
|
|
|
}
|
|
|
|
|
|
}
|