chore: continew-starter 2.5.2 => 2.6.0

修复更新加密失效
修复特殊校验异常不打印堆栈
其他优化

Closes #84
This commit is contained in:
2024-09-07 19:00:06 +08:00
parent 098571ffb2
commit c87317d199
46 changed files with 67 additions and 63 deletions

View File

@@ -19,7 +19,7 @@ package top.continew.admin.generator.mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import top.continew.admin.generator.model.entity.FieldConfigDO;
import top.continew.starter.data.mybatis.plus.base.BaseMapper;
import top.continew.starter.data.mp.base.BaseMapper;
import java.util.List;

View File

@@ -17,7 +17,7 @@
package top.continew.admin.generator.mapper;
import top.continew.admin.generator.model.entity.GenConfigDO;
import top.continew.starter.data.mybatis.plus.base.BaseMapper;
import top.continew.starter.data.mp.base.BaseMapper;
/**
* 生成配置 Mapper

View File

@@ -1,6 +1,6 @@
package ${packageName}.${subPackageName};
import top.continew.starter.data.mybatis.plus.base.BaseMapper;
import top.continew.starter.data.mp.base.BaseMapper;
import ${packageName}.model.entity.${classNamePrefix}DO;
/**

View File

@@ -108,7 +108,7 @@
<script setup lang="ts">
import ${classNamePrefix}AddModal from './${classNamePrefix}AddModal.vue'
import ${classNamePrefix}DetailDrawer from './${classNamePrefix}DetailDrawer.vue'
import { type ${classNamePrefix}Resp, type ${classNamePrefix}Query, delete${classNamePrefix}, export${classNamePrefix}, list${classNamePrefix} } from '@/apis/${apiModuleName}/${apiName}'
import { type ${classNamePrefix}Resp, type ${classNamePrefix}Query, delete${classNamePrefix}, export${classNamePrefix}, list${classNamePrefix} } from '@/apis/${apiModuleName}'
import type { TableInstanceColumns } from '@/components/GiTable/type'
import { useDownload, useTable } from '@/hooks'
import { isMobile } from '@/utils'