获取用户类型列表
<h5>简要描述</h5>
<p>-获取用户类型列表</p>
<h5>请求URL</h5>
<ul>
<li><code>http://xx.com/Admin/UserInterface/getUserRoleList</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>get </li>
</ul>
<h5>返回示例</h5>
<pre><code>{
"status": 200,
"msg": "获取成功",
"data": [
{
"id": "1",//角色id
"name": "总账号",//角色名称
"level": "1"
},
{
"id": "2",
"name": "经销商",
"level": "2"
},
{
"id": "3",
"name": "门店",
"level": "3"
}
]
}</code></pre>