import { Column, Entity } from 'typeorm'; import { BaseEntity } from '../../meta/entity/base-entity.entity'; @Entity({ name: 'frm_mapper_field_lov' }) export class FieldLovMapper extends BaseEntity { constructor() { super(); this.entity_type = 'FLOV'; } @Column({ name: 'mapper_field_id' }) mapper_field_id: number; //1 @Column({ name: 'destination_attribute_value', type: 'varchar', length: 30 }) destination_attribute_value: string; //INDIA @Column({ name: 'source_attribute_value', type: 'varchar', length: 30 }) source_attribute_value: string; //IND }