|
@@ -50,13 +50,12 @@ export class ChatManagementController {
|
|
|
@Get('conversation-list')
|
|
|
@ApiOperation({ summary: '获取会话列表' })
|
|
|
async getConversationList(@Query() query: GetConversationListDto) {
|
|
|
- const { customerId, staffId, status, page, size } = query
|
|
|
+ const { customerId, staffId, status, page } = query
|
|
|
return this.chatManagementService.getConversationList(
|
|
|
customerId,
|
|
|
staffId,
|
|
|
status,
|
|
|
- page,
|
|
|
- size
|
|
|
+ page
|
|
|
)
|
|
|
}
|
|
|
}
|