feat: 新增 antd 主子表 normal 模式代码生成示例

This commit is contained in:
puhui999
2025-05-03 16:42:23 +08:00
parent 0a14751fbd
commit e4b19eb8c8
5 changed files with 629 additions and 1 deletions

View File

@@ -1,3 +1,5 @@
import type { Dayjs } from 'dayjs';
import type { PageParam, PageResult } from '@vben/request';
import { requestClient } from '#/api/request';
@@ -24,7 +26,7 @@ export namespace Demo03StudentApi {
id: number; // 编号
name?: string; // 名字
sex?: number; // 性别
birthday?: Date; // 出生日期
birthday?: Dayjs | string; // 出生日期
description?: string; // 简介
demo03courses?: Demo03Course[];
demo03grade?: Demo03Grade;