文档
测试

5、移动源和固定源数据

POST
Cockpit.asmx/getSourceData

接口描述

移动源和固定源表格数据

请求参数

参数名
类型
描述
必填
token
string
用户token
必填
type
string
"0" -> 移动源 | "1" -> 固定源
必填

响应参数

参数名
类型
描述
必填
data
object
返回数据
必填
tableData
array
表格数据
必填
enterprise
string
企业名称
必填
sourceCode
string
源编码
必填
nucleusName
string
核素名称
必填
pollution
string
污染程度
必填
dose
string
剂量
必填
state
string
当前状态
必填

说明 / 示例

### 移动源和固定源数据 ```js // type = 1 固定源 数据如下 { data:{ "tableData": { "enterprise": "企业", // 企业 "place": "场所", // 场所 "installPlace": "安装位置",//安装位置 "applicationType": "应用类型",//应用类型 "dose": 7,//剂量(uSv/h) "colletTime": "1984-05-31"//采集时间 } } // type = 0 移动源 数据如下 { data:{ "tableData": { "enterprise": "企业名称",// 企业 "area": "区域名称",//区域 "applicationType": "应用类型",//应用类型 "installPlace":"安装位置", //安装位置 "dose": 8,//剂量(uSv/h) "battery": "90%",// 电量 "status": "正常", // 当前状态 "colletTime": "2011-02-01"//采集时间 "nationCode": "源国家编码",//国家编码 "nuclideName":"CO",//核素编码 "radTypeName":"II类源"//源类别 } } } ```