1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { Provide } from '@midwayjs/core';
import { BaseService } from '@cool-midway/core';
import { InjectEntityModel } from '@midwayjs/typeorm';
import { Repository } from 'typeorm';
import { PushCameraGpsEntity } from '../entity/cameragps';
 
/**
 * 监控相机GPS原始数据服务
 */
@Provide()
export class PushCameraGpsService extends BaseService {
  @InjectEntityModel(PushCameraGpsEntity)
  pushCameraGpsEntity: Repository<PushCameraGpsEntity>;
}