TicketShowList权限节点curl --location --request GET 'http://127.0.0.1:6810/api/tickets?page_number=1&page_size=20' \
--header 'Authorization: Bearer <token>'{
"code": "GET_ALL_TICKETS",
"message": "成功获取工单数据",
"data": {
"items": [
{
"id": 2,
"creator": 2352,
"type": 0,
"title": "测试工单",
"content": "只是一个测试工单而已",
"reply": "",
"closer": 0,
"open_at": "2025-09-17T01:00:08.368Z",
"close_at": "2025-09-17T01:00:08.368Z"
}
],
"page": 1,
"page_size": 20,
"total": 1
}
}