• 获取用户信息接口设计

    字段 描述 示例
    Authorization - bear XXX
    Content-Type - application/json

    response

    字段 描述 示例
    success 成功标识 Boolean
    message 请求结果描述 String
    data 数据源 Object
    userId 员工ID String
    userName 姓名 String
    Mobile 手机号 String

    例如

    {
        "success":true,
        "message":"",
        "data":{
            "userId":"1001",
            "userName":"海马汇",
            "mobile":"1590600xxxx"
        }
    }