import { BaseEntity } from 'src/module/meta/entity/base-entity.entity'; import { Column, Entity } from 'typeorm'; @Entity({ name: 'frm_integration_master' }) export class IntegrationSource extends BaseEntity { @Column({ name: 'logo', type: 'varchar', length: 500, nullable: true }) logo: string; @Column({ name: 'base_url', type: 'varchar', length: 100, nullable: true }) base_url: string; @Column({ name: 'integration_type', type: 'varchar', length: 20, nullable: true }) integration_type: string; @Column({ name: 'description', type: 'varchar', length: 500, nullable: true }) description: string; }