wangzhibo
2026-07-16 bac4362a0b7726d38a23d38f0d7913f2c2bab262
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { CoolController, BaseController } from '@cool-midway/core';
import { PushAuditlogEntity } from '../../entity/auditlog';
import { PushAuditlogService } from '../../service/auditlog';
 
/**
 * 接口审计日志管理
 */
@CoolController({
  api: ['add', 'delete', 'update', 'info', 'list', 'page'],
  entity: PushAuditlogEntity,
  service: PushAuditlogService,
  pageQueryOp: {
    select: ['a.*'],
    fieldEq: ['a.clientId', 'a.pushType'],
    where: async ctx => {
      const { startTime, endTime } = ctx.request.body;
      const conditions = [];
      if (startTime && endTime) {
        conditions.push([
          'a.logTime BETWEEN :startTime AND :endTime',
          { startTime, endTime },
        ]);
      }
      return conditions;
    },
  },
})
export class AdminPushAuditlogController extends BaseController {}