This commit is contained in:
ch197511161
2025-12-11 02:09:07 +08:00
parent 54d6acbce3
commit aaaf08e8f3
84 changed files with 4131 additions and 0 deletions

14
shared/types/base.ts Normal file
View File

@@ -0,0 +1,14 @@
/**
* 基础类型定义
* Base type definitions
*/
/**
* 基础实体接口 - 所有实体都应该有的基础字段
* Base entity interface - common fields for all entities
*/
export interface BaseEntity {
id: number
createdAt: Date
updatedAt: Date
}