工商数据管理 - Aladdin-GIS/XiShiGIS GitHub Wiki

正常业务数据导入


1、获得导入的记录

请求地址: IndComLog/GetAll?type =normal

请求方式: post

输入:

名称 类型 注释 默认值
start int 起始页 0
limit int 页数 10
order string 排序字段 null
sort string 排序方式 null
search string 过滤条件 null
type string 表示请求正常业务还是注销业务 normal

输出:

名称 类型 注释 默认值
total int 记录总数
rows object 数据
msg string 信息
success bool 成功/失败
code int 代码 200

2、删除导入的记录及数据

请求地址: IndComLog/Delete

请求示例: IndComLog/Delete?ids=1,2,3,4,5

请求方式: get

输入:

名称 类型 注释 默认值
ids int 记录ID(以“,”号分隔)

输出:

名称 类型 注释 默认值
msg string 信息
success bool 成功/失败
code int 代码 200

3、获得导入记录的数据

请求地址: IndCom/GetAll

请求方式: post

输入:

名称 类型 注释 默认值
start int 起始页 0
limit int 页数 10
order string 排序字段 null
sort string 排序方式 null
search string 过滤条件 null
TCL_ID int 导入数据记录ID

输出:

名称 类型 注释 默认值
total int 记录总数
rows object 数据
msg string 信息
success bool 成功/失败
code int 代码 200

4、删除导入记录的数据

请求地址: IndCom/Delete

请求示例: IndCom/Delete?ids=1,2,3,4,5

请求方式: get

输入:

名称 类型 注释 默认值
ids int 记录ID(以“,”号分隔)

输出:

名称 类型 注释 默认值
msg string 信息
success bool 成功/失败
code int 代码 200

5、导入数据

请求地址: IndComLog/Add

请求方式: post

输入:

名称 类型 注释 默认值
TCL_REGDATE string 导入文件名称
file 导入文件

输出:

名称 类型 注释 默认值
msg string 信息
success bool 成功/失败
code int 代码 200
===

注销业务数据导入


1、获得导入的记录

请求地址: IndComLog/GetAll?type =off

请求方式: post

输入:

名称 类型 注释 默认值
start int 起始页 0
limit int 页数 10
order string 排序字段 null
sort string 排序方式 null
search string 过滤条件 null
type string 表示请求正常业务还是注销业务 normal

输出:

名称 类型 注释 默认值
total int 记录总数
rows object 数据
msg string 信息
success bool 成功/失败
code int 代码 200

2、删除导入的记录及数据

请求地址: IndComLog/Delete

请求示例: IndComLog/Delete?ids=1,2,3,4,5

请求方式: get

输入:

名称 类型 注释 默认值
ids int 记录ID(以“,”号分隔)

输出:

名称 类型 注释 默认值
msg string 信息
success bool 成功/失败
code int 代码 200

3、获得导入记录的数据

请求地址: IndComOff/GetAll

请求方式: post

输入:

名称 类型 注释 默认值
start int 起始页 0
limit int 页数 10
order string 排序字段 null
sort string 排序方式 null
search string 过滤条件 null
TCL_ID int 导入数据记录ID

输出:

名称 类型 注释 默认值
total int 记录总数
rows object 数据
msg string 信息
success bool 成功/失败
code int 代码 200

4、删除导入记录的数据

请求地址: IndComOff/Delete

请求示例: IndComOff/Delete?ids=1,2,3,4,5

请求方式: get

输入:

名称 类型 注释 默认值
ids int 记录ID(以“,”号分隔)

输出:

名称 类型 注释 默认值
msg string 信息
success bool 成功/失败
code int 代码 200
5、导入数据

请求地址: IndComLog/AddOff

请求方式: post

输入:

名称 类型 注释 默认值
TCL_REGDATE string 导入文件名称
file 导入文件

输出:

名称 类型 注释 默认值
msg string 信息
success bool 成功/失败
code int 代码 200
===