/** * @author songxiwen * @date 2020/10/22 13:58 */ import { LocalizationContents } from '../../../../type/database'; export type KitCategoryType = { id: string; name: LocalizationContents; isEnabled: boolean; createdAt: Date; updatedAt: Date; }; export type KitType = { id: string; name: LocalizationContents; description?: LocalizationContents; authorId?: string; type: string; cover?: string; thumb?: string; banner?: string; purchaseCount: number; price: number; discount: number; memberDiscount: number; isEnabled: boolean; createdAt: Date; updatedAt: Date; };