|
|
@@ -23,6 +23,7 @@ import org.apache.dubbo.config.annotation.DubboService;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
+import java.time.LocalDateTime;
|
|
|
import java.util.List;
|
|
|
import java.util.Objects;
|
|
|
|
|
|
@@ -91,6 +92,7 @@ public class SmsbDepartmentUserServiceImpl extends ServiceImpl<SmsbDepartmentUse
|
|
|
}
|
|
|
SmsbDepartmentUserDO smsbDepartmentUserDO = new SmsbDepartmentUserDO();
|
|
|
BeanUtils.copyProperties(userMigration , smsbDepartmentUserDO);
|
|
|
+ smsbDepartmentUserDO.setCreateTime(LocalDateTime.now());
|
|
|
super.save(smsbDepartmentUserDO);
|
|
|
return SingleResponse.of(smsbDepartmentUserDO);
|
|
|
}
|