update docs/template/typings/api.d.ts.vm.

Signed-off-by: 唐振超 <imtzc@qq.com>
This commit is contained in:
唐振超 2025-07-03 01:05:33 +00:00 committed by Gitee
parent 229e00443f
commit 1b3a5d2600
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -5,7 +5,8 @@
*
* backend api module: "${ModuleName}"
*/
namespace ${ModuleName} {
declare namespace Api {
namespace ${ModuleName} {
/** ${businessname} */
type ${BusinessName} = Common.CommonRecord<{
#foreach($column in $columns)#if(!$BaseEntity.contains($column.javaField))
@ -41,4 +42,5 @@ namespace ${ModuleName} {
/** ${businessname} list */
type ${BusinessName}List = Api.Common.PaginatingQueryRecord<${BusinessName}>;
}
}