接口说明

根据后端系统打印的 transLog 日志内容,查询相关接口的操作人信息,资源信息以及资源的创建人等信息

权限说明

使用 token 访问,只有超级管理员才能使用该接口

基本信息

属性 请求路径
API /api/dash/resource/getLogInfo
请求方法 GET

请求参数

字段名称 参数类型 参数说明
token String 用于鉴权
operatorId Number transLog中记录的userId
resourceId Number or String transLog中记录的resourceId
resourceName String transLog中记录的resourceName

请求参数示例

{
  "token": "1503575355359c4fdea8ec1683ed10edd91ae",
  "operatorId": 1,
  "resourceId": 2,
  "resourceName": "NEW_REPORT"
}

返回结果示例:

{
  "code": 200,
  "result": {
    "operator": {
      "id": 1,
      "nick": "zhangsan",
      "email": "zhangsan@163.com",
      "uniqueId": "zhangsan@163.com"
    },
    "creator": {
      "id": 2,
      "nick": "lisi",
      "email": "lisi@163.com",
      "uniqueId": "lisi@163.com"
    },
    "modifier": {
      "id": 2,
      "nick": "lisi",
      "email": "lisi@163.com",
      "uniqueId": "lisi@163.com"
    },
    "resource": {
      "id": 1,
      "title": "我的报告",
      "createTime": "2019-01-01 00:00:00",
      "modifierTime": "2019-01-02 00:00:00"
    },
    "resourceName": "报告"
  }
}