wangzhibo
6 天以前 7dcc2997614f849258091f5d66e648317a40d323
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { CoolController, BaseController } from '@cool-midway/core';
import { CsSessionEntity } from '../../entity/session';
import { UserInfoEntity } from '../../../user/entity/info';
 
/**
 * 客服会话
 */
@CoolController({
  api: ['page'],
  entity: CsSessionEntity,
  pageQueryOp: {
    select: ['a.*', 'b.nickName', 'b.avatarUrl'],
    join: [
      {
        entity: UserInfoEntity,
        alias: 'b',
        condition: 'a.userId = b.id',
      },
    ],
  },
})
export class Controller extends BaseController {}