获取授权列表

获取授权列表

HTTP标准包头字段(必填):

Accept application/json;Content-Type:application/json;charset=UTF-8;

获取授权列表

获取授权列表

HTTP标准包头字段(必填):

Accept application/json;Content-Type:application/json;charset=UTF-8;
               

JSON请求示例

GET http://请求地址/Workquery/bindAutoList/{token字符串}/{username工号} HTTP/1.1 
Accept:application/json;
Content-Type:application/json;
charset=UTF-8;
                   

属性说明

属性类型约束说明

响应说明

属性类型约束说明
descString必选返回结果说明
statusString必选返回结果code。
countString必选总数
noString必选工号
noString必选工号
nameString必选名称
deptnameString必选所属部门
bindautoString必选是否已授权

HTTP/1.1 200 OK{响应JSON

    "desc": "操作成功",
    "status": "000",
    "list": "{"count":"5","rows":[{"no":"1002","name":"1002","deptname":"集团总部","bindauto":"是"}]}"
}
                 

获取我的授权

获取我的授权

HTTP标准包头字段(必填):

Accept application/json;Content-Type:application/json;charset=UTF-8;
               

JSON请求示例

GET http://请求地址/Workquery/bindAutoEList/{token字符串}/{username工号} HTTP/1.1 
Accept:application/json;
Content-Type:application/json;
charset=UTF-8;
                   

属性说明

属性类型约束说明

响应说明

属性类型约束说明
descString必选返回结果说明
statusString必选返回结果code。
countString必选总数
noString必选工号
noString必选工号
nameString必选名称
deptnameString必选所属部门
bindautoString必选是否已授权

HTTP/1.1 200 OK{响应JSON

    "desc": "操作成功",
    "status": "000",
    "list": "{"count":"5","rows":[{"no":"1002","name":"1002","deptname":"集团总部","bindauto":"是"}]}"
}
                 

执行授权

执行授权

HTTP标准包头字段(必填):

Accept application/json;Content-Type:application/json;charset=UTF-8;
               

JSON请求示例

POST http://请求地址/Workquery/bindAutoExecute/{token字符串}/{username工号}/{autoname要授权的工号}/{flag是否授权标识0为取消授权1为设置授权} HTTP/1.1 
Accept:application/json;
Content-Type:application/json;
charset=UTF-8;
                   

属性说明

属性类型约束说明

响应说明

属性类型约束说明
descString必选返回结果说明
statusString必选返回结果code。

HTTP/1.1 200 OK{响应JSON

    "desc": "操作成功",
    "status": "000"
}