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

This commit is contained in:
puhui999
2025-05-03 18:23:51 +08:00
parent 1bfcdcb708
commit d746b8f572
7 changed files with 1238 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; // 简介
}
}