Files
wwjcloud/temp/entities/diy_form_records.ts

26 lines
618 B
TypeScript
Raw Normal View History

import { Entity, Column, PrimaryGeneratedColumn } from 'typeorm';
@Entity('diy_form_records')
export class DiyFormRecords {
@PrimaryGeneratedColumn({ type: 'int' })
id: number;
@Column({ name: 'site_id', type: 'int', default: 0 })
siteId: any;
@Column({ name: 'form_id', type: 'int', default: 0 })
formId: any;
@Column({ name: 'value', type: 'text' })
value: any;
@Column({ name: 'member_id', type: 'int', default: 0 })
memberId: any;
@Column({ name: 'relate_id', type: 'int', default: 0 })
relateId: any;
@Column({ name: 'create_time', type: 'int', default: 0 })
createTime: any;
}