import { BaseEntity } from "typeorm"; import User from "./User"; import { Lazy } from "../libs/utils"; export default class DemoPage extends BaseEntity { id: string; title: string; content: string; author: Lazy; visible: boolean; }