|
@@ -64,6 +64,9 @@ public class RemoteBaseService {
|
|
|
|
|
|
|
|
|
|
|
|
|
public KwsEnterpriseResDto queryEnterpriseById(Long id) {
|
|
public KwsEnterpriseResDto queryEnterpriseById(Long id) {
|
|
|
|
|
+ if (Objects.isNull(id)) {
|
|
|
|
|
+ return null;
|
|
|
|
|
+ }
|
|
|
KwsEnterprise kwsEnterprise = kwsEnterpriseService.queryKwsEnterpriseById(id);
|
|
KwsEnterprise kwsEnterprise = kwsEnterpriseService.queryKwsEnterpriseById(id);
|
|
|
if (Objects.isNull(kwsEnterprise)) {
|
|
if (Objects.isNull(kwsEnterprise)) {
|
|
|
return null;
|
|
return null;
|