Pre Merge pull request !12 from 唐振超/dev

This commit is contained in:
唐振超 2025-07-03 01:07:49 +00:00 committed by Gitee
commit def1a20183
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -5,6 +5,7 @@
* *
* backend api module: "${ModuleName}" * backend api module: "${ModuleName}"
*/ */
declare namespace Api {
namespace ${ModuleName} { namespace ${ModuleName} {
/** ${businessname} */ /** ${businessname} */
type ${BusinessName} = Common.CommonRecord<{ type ${BusinessName} = Common.CommonRecord<{
@ -42,3 +43,4 @@ namespace ${ModuleName} {
/** ${businessname} list */ /** ${businessname} list */
type ${BusinessName}List = Api.Common.PaginatingQueryRecord<${BusinessName}>; type ${BusinessName}List = Api.Common.PaginatingQueryRecord<${BusinessName}>;
} }
}