123456789101112131415161718192021 |
- import { Column, Entity } from 'typeorm';
- import { BaseModel } from '../../frame/BaseModel';
- @Entity('incubator')
- export class Incubator extends BaseModel {
- @Column({ type: 'integer', comment: '平台用户id' })
- user: number;
- @Column({ type: 'character varying', nullable: true, comment: '名称' })
- name: string;
- @Column({ type: 'character varying', nullable: true, comment: '负责人姓名' })
- person: string;
- @Column({ type: 'character varying', nullable: true, comment: '负责人电话' })
- person_phone: string;
- @Column({ type: 'character varying', nullable: true, comment: '地址' })
- address: string;
- @Column({ type: 'text', nullable: true, comment: '简介' })
- brief: string;
- @Column({ type: 'character varying', nullable: true, comment: '是否公开' })
- is_show: string;
- @Column({ type: 'character varying', nullable: true, comment: '状态', default: '0' })
- status: string;
- }
|