|
@@ -25,10 +25,6 @@ export class Project extends BaseModel {
|
|
area: Array<any>;
|
|
area: Array<any>;
|
|
@Column({ type: 'text', nullable: true, comment: '简介' })
|
|
@Column({ type: 'text', nullable: true, comment: '简介' })
|
|
brief: string;
|
|
brief: string;
|
|
- @Column({ type: 'character varying', nullable: true, comment: '是否公开' })
|
|
|
|
- is_use: string;
|
|
|
|
- @Column({ type: 'character varying', nullable: true, comment: '状态' })
|
|
|
|
- status: string;
|
|
|
|
@Column({ type: 'character varying', nullable: true, comment: '项目主体' })
|
|
@Column({ type: 'character varying', nullable: true, comment: '项目主体' })
|
|
main: string;
|
|
main: string;
|
|
@Column({ type: 'character varying', nullable: true, comment: '项目进展' })
|
|
@Column({ type: 'character varying', nullable: true, comment: '项目进展' })
|
|
@@ -39,4 +35,8 @@ export class Project extends BaseModel {
|
|
source: string;
|
|
source: string;
|
|
@Column({ type: 'character varying', nullable: true, comment: '产业分类' })
|
|
@Column({ type: 'character varying', nullable: true, comment: '产业分类' })
|
|
industry: string;
|
|
industry: string;
|
|
|
|
+ @Column({ type: 'character varying', nullable: true, comment: '是否公开', default: '0' })
|
|
|
|
+ is_use: string;
|
|
|
|
+ @Column({ type: 'character varying', nullable: true, comment: '状态', default: '0' })
|
|
|
|
+ status: string;
|
|
}
|
|
}
|