import { ACTION_TEMPLATE_MAPPING } from 'src/constant/global.constant'; import { BaseEntity } from 'src/module/meta/entity/base-entity.entity'; import { Column, Entity } from 'typeorm'; @Entity({ name: 'frm_wf_action_template_mapping' }) export class ActionTemplateMapping extends BaseEntity { constructor() { super(); this.entity_type = ACTION_TEMPLATE_MAPPING; } @Column({ type: 'int', nullable: true }) stg_act_mapping_id: number; @Column({ type: 'varchar', nullable: true }) template_code: string; }