文档
测试

医废出入库重量统计

GET
http://192.168.31.200:8080/sunthink/app/collectionWeight?startTime&endTime&loginUserName=hspapp

请求参数

参数名
类型
描述
必填
startTime
String
格式:yyyy-MM-dd HH:mm:ss ,若查当天数据,传空值即可
必填
endTime
String
格式:yyyy-MM-dd HH:mm:ss ,若查当天数据,传空值即可
必填
loginUserName
String
用户名, 如:王巧香
必填

响应参数

参数名
类型
描述
必填
wasteType
医废类型
必填
collectWeight
收集重量
必填
inWeight
入库重量
必填
outWeight
出库重量
必填

说明 / 示例

```json { "msg": "操作成功", "code": 200, "data": [ { "inWeight": 1.95, "wasteType": "普通感染类", "collectWeight": 4.9, "outWeight": 13.65 }, { "inWeight": 0.0, "wasteType": "普通化学类", "collectWeight": 0.0, "outWeight": 0.0 }, { "inWeight": 0.0, "wasteType": "普通病理类", "collectWeight": 0.0, "outWeight": 0.0 }, { "inWeight": 0.0, "wasteType": "普通损伤类", "collectWeight": 0.0, "outWeight": 0.0 }, { "inWeight": 0.0, "wasteType": "普通药物类", "collectWeight": 0.0, "outWeight": 0.0 }, { "inWeight": 0.0, "wasteType": "普通输液类", "collectWeight": 0.0, "outWeight": 0.0 }, { "inWeight": 0.0, "wasteType": "钢板", "collectWeight": 1.55, "outWeight": 0.0 }, { "inWeight": 1.75, "wasteType": "特殊感染类", "collectWeight": 1.75, "outWeight": 0.0 }, { "inWeight": 1.25, "wasteType": "特殊化学类", "collectWeight": 1.25, "outWeight": 16.1 }, { "inWeight": 0.0, "wasteType": "特殊病理类", "collectWeight": 0.0, "outWeight": 0.0 }, { "inWeight": 0.0, "wasteType": "特殊损伤类", "collectWeight": 0.0, "outWeight": 0.0 }, { "inWeight": 0.0, "wasteType": "特殊药物类", "collectWeight": 0.0, "outWeight": 0.0 }, { "inWeight": 0.0, "wasteType": "特殊输液类", "collectWeight": 0.0, "outWeight": 0.0 }, { "inWeight": 4.95, "wasteType": "总计", "collectWeight": 9.45, "outWeight": 29.75 } ] } ```