修复路径错误

master
面包骑士 2024-08-09 22:24:28 +08:00
parent 0be06b5dd6
commit e5c279aac2
6 changed files with 11 additions and 13 deletions

View File

@ -1,9 +1,9 @@
package com.muyu.common.acos.remote;
package com.muyu.common.nacos.remote;
import com.dtflys.forest.annotation.BaseRequest;
import com.dtflys.forest.annotation.Body;
import com.muyu.common.acos.remote.req.NacosListReq;
import com.muyu.common.acos.remote.resp.NacoeListResp;
import com.muyu.common.nacos.remote.req.NacosListReq;
import com.muyu.common.nacos.remote.resp.NacoeListResp;
import com.muyu.common.core.constant.Constants;
import org.springframework.web.bind.annotation.GetMapping;

View File

@ -1,4 +1,4 @@
package com.muyu.common.acos.remote.interceptor;
package com.muyu.common.nacos.remote.interceptor;
/**
* @Author:

View File

@ -1,4 +1,4 @@
package com.muyu.common.acos.remote.req;
package com.muyu.common.nacos.remote.req;
import lombok.*;

View File

@ -1,7 +1,6 @@
package com.muyu.common.acos.remote.req;
package com.muyu.common.nacos.remote.req;
import lombok.*;
import lombok.experimental.SuperBuilder;
/**
* @Author:

View File

@ -1,4 +1,4 @@
package com.muyu.common.acos.remote.resp;
package com.muyu.common.nacos.remote.resp;
import lombok.*;

View File

@ -1,4 +1,4 @@
package com.muyu.common.acos.service;
package com.muyu.common.nacos.service;
/**
* @Author:
@ -9,13 +9,12 @@ package com.muyu.common.acos.service;
*/
import com.muyu.common.acos.remote.NacosServiceRemote;
import com.muyu.common.acos.remote.req.NacosListReq;
import com.muyu.common.acos.remote.resp.NacoeListResp;
import com.muyu.common.nacos.remote.NacosServiceRemote;
import com.muyu.common.nacos.remote.req.NacosListReq;
import com.muyu.common.nacos.remote.resp.NacoeListResp;
import javax.annotation.Resource;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/**