refactor(extension/crud): 调整 IService 到 data-core

This commit is contained in:
2024-02-21 19:54:50 +08:00
parent 9ed2dac00c
commit ab7e987672
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package top.charles7c.continew.starter.extension.crud.service;
package top.charles7c.continew.starter.data.core.service;
import java.io.Serializable;

View File

@@ -43,7 +43,7 @@ import top.charles7c.continew.starter.data.mybatis.plus.query.QueryWrapperHelper
import top.charles7c.continew.starter.extension.crud.annotation.TreeField;
import top.charles7c.continew.starter.extension.crud.model.entity.BaseDO;
import top.charles7c.continew.starter.extension.crud.model.req.BaseReq;
import top.charles7c.continew.starter.extension.crud.service.IService;
import top.charles7c.continew.starter.data.core.service.IService;
import top.charles7c.continew.starter.extension.crud.model.query.PageQuery;
import top.charles7c.continew.starter.extension.crud.model.query.SortQuery;
import top.charles7c.continew.starter.extension.crud.model.resp.PageResp;