- import { MatchPath } from '../../entity/platform/matchPath.entity';
- import { Provide } from '@midwayjs/core';
- import { InjectEntityModel } from '@midwayjs/typeorm';
- import { Repository } from 'typeorm';
- import { BaseServiceV2 } from '../../frame/BaseServiceV2';
- @Provide()
- export class MatchPathService extends BaseServiceV2 {
- @InjectEntityModel(MatchPath)
- model: Repository<MatchPath>;
- getQueryColumnsOpera() {
- const obj = {};
- return obj;
- }
- }
|