Commit d80016f9 authored by hongguangwu's avatar hongguangwu

变更记录,忽略更新人更新时间

parent a790d468
......@@ -49,7 +49,9 @@ public class HrEquator extends GetterBaseEquator {
List<FieldInfo> diff = equator.getDiffFields(oldInfo, newInfo);
if(!Common.isEmpty(diff)){
for(FieldInfo field:diff){
sb.append(field.getFieldName()).append(",");
if (!"updateTime".equals(field.getFieldName()) && !"updateBy".equals(field.getFieldName())) {
sb.append(field.getFieldName()).append(",");
}
}
sb.deleteCharAt(sb.length()-1);
}
......
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