matchPath.service.ts 460 B

1234567891011121314
  1. import { MatchPath } from '../../entity/platform/matchPath.entity';
  2. import { Provide } from '@midwayjs/core';
  3. import { InjectEntityModel } from '@midwayjs/typeorm';
  4. import { Repository } from 'typeorm';
  5. import { BaseServiceV2 } from '../../frame/BaseServiceV2';
  6. @Provide()
  7. export class MatchPathService extends BaseServiceV2 {
  8. @InjectEntityModel(MatchPath)
  9. model: Repository<MatchPath>;
  10. getQueryColumnsOpera() {
  11. const obj = {};
  12. return obj;
  13. }
  14. }