feat: 简单修改实体位置,更加具有扩展性

This commit is contained in:
wangyu 2023-01-31 14:37:58 +08:00
parent 98a022a1ca
commit bf756ee743
5 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
package group.flyfish.rest.core.entity;
package group.flyfish.rest.entity;
import lombok.AllArgsConstructor;
import lombok.Getter;

View File

@ -1,6 +1,6 @@
package group.flyfish.rest.core.client;
import group.flyfish.rest.core.entity.Multipart;
import group.flyfish.rest.entity.Multipart;
import group.flyfish.rest.enums.HttpMethod;
import group.flyfish.rest.utils.DataUtils;
import group.flyfish.rest.utils.JacksonUtil;

View File

@ -1,7 +1,7 @@
package group.flyfish.rest.registry.proxy.support;
import group.flyfish.rest.annotation.RestApi;
import group.flyfish.rest.core.entity.Multipart;
import group.flyfish.rest.entity.Multipart;
import group.flyfish.rest.utils.DataUtils;
import lombok.Builder;
import lombok.Data;

View File

@ -1,7 +1,7 @@
package group.flyfish.rest.registry.proxy.support.resolvers;
import group.flyfish.rest.annotation.RestPart;
import group.flyfish.rest.core.entity.Multipart;
import group.flyfish.rest.entity.Multipart;
import group.flyfish.rest.registry.proxy.support.ArgumentResolveContext;
import group.flyfish.rest.registry.proxy.support.RestArgumentResolver;

View File

@ -4,7 +4,7 @@ import group.flyfish.rest.annotation.RestApi;
import group.flyfish.rest.annotation.RestPart;
import group.flyfish.rest.annotation.RestService;
import group.flyfish.rest.container.RestTestContainer;
import group.flyfish.rest.core.entity.Multipart;
import group.flyfish.rest.entity.Multipart;
import group.flyfish.rest.enums.HttpMethod;
import lombok.extern.slf4j.Slf4j;
import org.junit.Test;