2024-03-14 13:50:57 +00:00
|
|
|
import { Entity, Column } from 'typeorm';
|
|
|
|
import { BaseEntity } from './base.entity';
|
2024-01-30 14:19:45 +00:00
|
|
|
|
|
|
|
@Entity({ name: 'surveyMeta' })
|
2024-03-14 13:50:57 +00:00
|
|
|
export class SurveyMeta extends BaseEntity {
|
2024-01-30 14:19:45 +00:00
|
|
|
@Column()
|
|
|
|
title: string;
|
|
|
|
|
|
|
|
@Column()
|
|
|
|
remark: string;
|
|
|
|
|
|
|
|
@Column()
|
|
|
|
surveyType: string;
|
|
|
|
|
|
|
|
@Column()
|
|
|
|
surveyPath: string;
|
|
|
|
|
|
|
|
@Column()
|
|
|
|
creator: string;
|
|
|
|
|
|
|
|
@Column()
|
|
|
|
owner: string;
|
|
|
|
|
|
|
|
@Column()
|
|
|
|
createMethod: string;
|
|
|
|
|
|
|
|
@Column()
|
|
|
|
createFrom: string;
|
|
|
|
}
|