查询签字模板
## 查询签名模版
>查询签名模版
###### 接口地址
> 地址:域名(ip地址)+/包名/sign/v1/signtmpl/list
###### 请求方式
> POST
###### 请求参数
|参数|必选|类型|说明|
|-|-|-|-|
|signature|必填|string|签字信息加密码,从签字链接url中获取|
|currentPage|可选|int|当前页,默认1|
|pageSize|可选|int|每页的条数,默认10|
###### 返回参数
|返回参数|说明|
|-|-|
|-|-|
###### 返回成功
``` javascript
{
"succeed": 0,
"msg": null,
"data": {
"total": 1,
"data": [
{
"id": 1,
"svgContent": "xxx"
}
],
"pageSize": 10,
"currentPage": 1
}
}
```
###### 返回失败
``` javascript
{
"succeed": 200,
"msg": {
"en": "Parameter error",
"cn": "参数错误"
},
"data": null
}
```