|
@@ -143,6 +143,8 @@ public class OperationManagementFacade {
|
|
|
public Boolean matchingOperation(MatchingOperationVO matchingOperationVO) {
|
|
|
OperationInfo operationInfo = new OperationInfo();
|
|
|
BeanUtils.copyProperties(matchingOperationVO, operationInfo);
|
|
|
+ operationInfo.setModifier(SysUserUtils.getCurrentPrinciple() == null ? "0" : SysUserUtils.getCurrentPrinciple());
|
|
|
+ operationInfo.setGmtModified(DateUtil.now());
|
|
|
return operationInfoFacade.updateById(operationInfo);
|
|
|
}
|
|
|
|