refactor: 项目结构优化与代码生成模板修复

This commit is contained in:
Ray.Hao
2026-04-02 09:24:24 +08:00
parent 9cd3ff88f8
commit c7c6799af4
52 changed files with 153 additions and 147 deletions

View File

@@ -3,10 +3,10 @@
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!--suppress ALL -->
<mapper namespace="com.youlai.boot.module.codegen.mapper.DatabaseMapper">
<mapper namespace="com.youlai.boot.codegen.mapper.DatabaseMapper">
<!-- 查询数据库表分页 mysql版本-->
<select id="getTablePage" resultType="com.youlai.boot.module.codegen.model.vo.TablePageVO" databaseId="mysql">
<select id="getTablePage" resultType="com.youlai.boot.codegen.model.vo.TablePageVO" databaseId="mysql">
SELECT
t1.TABLE_NAME ,
t1.TABLE_COMMENT ,
@@ -35,7 +35,7 @@
</select>
<!-- 查询数据库表元数据 mysql版本-->
<select id="getTableMetadata" resultType="com.youlai.boot.module.codegen.model.vo.TableMetaVO" databaseId="mysql">
<select id="getTableMetadata" resultType="com.youlai.boot.codegen.model.vo.TableMetaVO" databaseId="mysql">
SELECT
TABLE_NAME ,
TABLE_COMMENT ,
@@ -50,7 +50,7 @@
</select>
<!-- 获取数据库表字段元数据 mysql版本-->
<select id="getTableColumns" resultType="com.youlai.boot.module.codegen.model.vo.ColumnMetaVO" databaseId="mysql">
<select id="getTableColumns" resultType="com.youlai.boot.codegen.model.vo.ColumnMetaVO" databaseId="mysql">
SELECT
COLUMN_NAME,
DATA_TYPE,

View File

@@ -7,7 +7,7 @@ const ${entityName}API = {
/** 获取${businessName}分页数据 */
getPage(queryParams?: ${entityName}QueryParams) {
return request<any, PageResult<${entityName}Item>>({
url: `${${entityUpperSnake}_BASE_URL}`,
url: \`\${${entityUpperSnake}_BASE_URL}\`,
method: "get",
params: queryParams,
});
@@ -20,7 +20,7 @@ const ${entityName}API = {
*/
getFormData(id: string) {
return request<any, ${entityName}Form>({
url: `${${entityUpperSnake}_BASE_URL}/${id}/form`,
url: \`\${${entityUpperSnake}_BASE_URL}/\${id}/form\`,
method: "get",
});
},
@@ -32,7 +32,7 @@ const ${entityName}API = {
*/
create(data: ${entityName}Form) {
return request({
url: `${${entityUpperSnake}_BASE_URL}`,
url: \`\${${entityUpperSnake}_BASE_URL}\`,
method: "post",
data,
});
@@ -46,7 +46,7 @@ const ${entityName}API = {
*/
update(id: string, data: ${entityName}Form) {
return request({
url: `${${entityUpperSnake}_BASE_URL}/${id}`,
url: \`\${${entityUpperSnake}_BASE_URL}/\${id}\`,
method: "put",
data,
});
@@ -59,7 +59,7 @@ const ${entityName}API = {
*/
deleteByIds(ids: string) {
return request({
url: `${${entityUpperSnake}_BASE_URL}/${ids}`,
url: \`\${${entityUpperSnake}_BASE_URL}/\${ids}\`,
method: "delete",
});
}