zs 1 년 전
부모
커밋
db49aa5995
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/service/platform/match.service.ts

+ 1 - 1
src/service/platform/match.service.ts

@@ -3,8 +3,8 @@ import { InjectEntityModel } from '@midwayjs/typegoose';
 import { ReturnModelType } from '@typegoose/typegoose';
 import { BaseService } from 'free-midway-component';
 import { Match } from '../../entity/platform/match.entity';
-import { Collection } from 'mongoose';
 import { get } from 'lodash';
+import { Collection } from '../../entity/platform/collection.entity';
 type modelType = ReturnModelType<typeof Match>;
 @Provide()
 export class MatchService extends BaseService<modelType> {