lolosia-web/typings/model.d.ts

13 lines
193 B
TypeScript
Raw Normal View History

2024-12-12 14:36:22 +08:00
export interface CountAll<T> {
rows: T[]
count: number
}
export interface BasicModel {
createdAt: string
createdBy: string
updatedAt: string
updatedBy: string
deleted: boolean
}