import { Injectable } from '@nestjs/common'; import { EntityServiceImpl } from 'src/module/meta/service/entity-service-impl.service'; import { DataSource } from 'typeorm'; @Injectable() export class ActionResourcesMappingService extends EntityServiceImpl { constructor(private readonly dataSource: DataSource) { super(); } }