import { Provide } from '@midwayjs/core';
|
import { BaseService } from '@cool-midway/core';
|
import { InjectEntityModel } from '@midwayjs/typeorm';
|
import { Repository } from 'typeorm';
|
import { PushAuditlogEntity } from '../entity/auditlog';
|
|
/**
|
* 接口审计日志服务
|
*/
|
@Provide()
|
export class PushAuditlogService extends BaseService {
|
@InjectEntityModel(PushAuditlogEntity)
|
pushAuditlogEntity: Repository<PushAuditlogEntity>;
|
}
|