var layer; var grainData;// 当前仓粮情数据 var form; var table; var element; var compareData = null;// 对比数据 var listGrainData;// 默认页面中的粮情列表 var mapGrainData;// 批量打印中的批量粮情信息 $(function () { layui.use(['layer', 'laydate', 'form', 'table', 'element'], function () { element = layui.element; form = layui.form; layer = layui.layer; var laydate = layui.laydate; table = layui.table; // 日期 laydate.render({ elem: '#checkDateMore', type: 'month', theme: '#7b8e9f', position: 'static', done: function (value, date, endDate) { flushGrain(value); } }); laydate.render({ elem: '#compareCheckDate', type: 'month', theme: '#7b8e9f', done: function (value, date, endDate) { compareStep2(value); } }); laydate.render({ elem: '#printCheckDate', theme: '#7b8e9f' }); laydate.render({ elem: '#printCheckDate2', theme: '#7b8e9f' }); form.render(); // 监听仓库选择 form.on('select(select_depotId)', function (obj) { return flushGrain(null); }); // 监听选择批次 form.on('select(select_batchId)', function (obj) { var value = obj.value; if (value == "0") {// 表示弹出更多批次 showMore(); } else { flushGrainByBatchId(value); } }); // 监听显示类型 form.on('switch(filter_switch)', function (obj) { var value = obj.value; var checked = obj.elem.checked; if (checked) { if ("lay" == value) {// 层 $("#switch_row").prop("checked", false); $("#switch_col").prop("checked", false); lay(); } if ("row" == value) { $("#switch_lay").prop("checked", false); $("#switch_col").prop("checked", false); row(); } if ("col" == value) { $("#switch_lay").prop("checked", false); $("#switch_row").prop("checked", false); col(); } form.render(); } }); form.on('switch(filter_switch2)', function (obj) { var value = obj.value; var checked = obj.elem.checked; console.log(value); if (checked) { if ("outer" == value) { $("#switch_all").prop("checked", false); $("#switch_inner").prop("checked", false); display_outside(); } if ("all" == value) { $("#switch_inner").prop("checked", false); $("#switch_outer").prop("checked", false); display_all(); } if ("inner" == value) { $("#switch_all").prop("checked", false); $("#switch_outer").prop("checked", false); display_inside(); } form.render(); } }); // 监听对比数据 table.on('radio(filterTable)', function (obj) { compareData = obj.data; }); //初始化刷新数据 initData(); }); // 初始化坐标系 initGrainChar3d(); }); function initData() { if (depotId) { $("#depotId").val(depotId); flushGrain(null); form.render(); } } /** * 检测仓库类型是否发生改变,如果发生改变,重新切换页面 */ function changeView(depotType) { //类型改变,自动切换页面 depotId = $("#depotId").val(); window.location.href = "../dzhwk/grain-check1"; return true; } // 单仓打印 function printSingle() { layer.msg("开始调用后台打印模板……"); toPrintSingle(grainData); } // 批量打印 function printBatch() { // 首先去除之前的选择 $('#batchPrintSelect input').each(function () { var name = $(this).prop("name"); if (name == "printCheckDate") {// 跳过 return true; } $(this).prop("disabled", false); $(this).prop("checked", false); }); form.render(); //初始化批量模板 initModel(); // 弹出选择框 layer.open({ type: 1, title: '批量粮情打印(红色表示没有粮情记录,默认为当天)', area: ['750px', '450px'], shade: 0, content: $('#batchPrintSelect'), btn: ['全选', '反选', '重选', '执行打印', '取消打印'], yes: function () { var name; $('#batchPrintSelect input').each(function () { name = $(this).prop("name"); if (name == "printCheckDate" || $(this).prop("disabled")) { // doNothing } else { $(this).prop("checked", true); } }); form.render(); }, btn2: function () { var name; $('#batchPrintSelect input').each(function () { name = $(this).prop("name"); if (name == "printCheckDate" || $(this).prop("disabled")) { // doNothing } else { if ($(this).prop("checked")) { $(this).prop("checked", false); } else { $(this).prop("checked", false); } } }); form.render(); return false; }, btn3: function () { var name; $('#batchPrintSelect input').each(function () { name = $(this).prop("name"); if (name == "printCheckDate" || $(this).prop("disabled")) { // doNothing } else { $(this).prop("checked", false); } }); form.render(); return false; }, btn4: function () { printBatchTodo(); }, btn5: function () { layer.close(0); }, closeBtn: 0 }); // 默认调用获取数据更新 $("#printCheckDate").prop("value", dateFtt("yyyy-MM-dd", new Date())); getPrintBatchDepot(); }; // 获取批量打印的信息 function getPrintBatchDepot() { layer.msg("验证粮情检测记录……"); var checkDate = $("#printCheckDate").val(); var checkHour = $("#printCheckHour").val(); //console.log(checkTime); $.ajax({ type: "POST", url: "../../basic/grain/query-checkDate-map", dataType: "json", contentType: "application/json;charset=UTF-8", data: JSON.stringify({ checkDate: checkDate, checkHour: checkHour }), success: function (result) { if (result.code != "0000") { layer.msg(result.msg); disabledAllSelectDepot(); } else { mapGrainData = result.data; updateSelectDepot(); } }, error: function () { layer.msg("批量打印获取粮情信息失败!"); } }); }; // 根据查询的数据批量打印预览 function printBatchTodo() { layer.msg("开始批量生成打印模版……"); var strHtml; var value; var checked; var printGrainData; // 将仓库数据列表转换为MAP var mapDepot = {}; $.each(listDepot, function (index, data) { mapDepot[data.id] = data; }); var LODOP = CLODOP; // 设置默认满张打印 LODOP.PRINT_INIT("粮情报表");// 初始化在循环外 LODOP.SET_PRINT_PAGESIZE(1, 0, 0, "A4"); $('#batchPrintSelect input').each(function () { if ($(this).prop("name") == "printCheckDate") {// 跳过 return true; } checked = $(this).prop("checked"); if (checked) { value = $(this).val(); printGrainData = mapGrainData[value]; if (!printGrainData) {// 如果没有粮情数据跳过执行下一个 return true; } LODOP.NewPage(); printGrainData.depotData = mapDepot[value]; strHtml = builderModel(printGrainData); LODOP.ADD_PRINT_HTM(30, 40, "180mm", "100%", strHtml); } }); layer.msg("开始调用打印程序预览……"); LODOP.SET_PRINT_MODE("PRINT_PAGE_PERCENT", "Full-Page"); LODOP.PREVIEW(); }; // 设置批量打印中所有仓库不可选择 function disabledAllSelectDepot() { var name; $('#batchPrintSelect input').each(function () { name = $(this).prop("name"); if (name == "printCheckDate") {// 跳过 return true; } $(this).prop("disabled", true); }); form.render(); }; function updateSelectDepot() { var value, name; $('#batchPrintSelect input').each(function () { value = $(this).val(); name = $(this).prop("name"); if (name == "printCheckDate") {// 跳过 return true; } if (mapGrainData[value]) { $(this).prop("disabled", false); } else { $(this).prop("disabled", true); } }); form.render(); }; // 粮情对比 function compare() { layer.msg("暂未开放!"); return; if (!depotId) { layer.msg("请先选择仓库……"); return; } var batchId = $("#batchId").val(); if (!batchId) { layer.msg("当前没有可以比较的数据……"); return; } // 为了避免重复比较出现的问题,如果已经比较过数据,则在比较前刷新下数据 if (compareData) { flushGrainByBatchId(batchId); } // 首先弹出层 layer.open({ type: 1, title: '粮情对比选择', area: ['330px', '640px'], shade: 0, content: $('#compareSelect'), btn: ['确认对比', '取消对比'], yes: function () { if (compareData) { layer.msg("开始执行批次对比……"); compareStep3(grainData, compareData); } else { layer.msg("没有获取到对比数据!!"); } }, btn2: function () { layer.closeAll(); }, closeBtn: 1 }); $("#compareCheckDate").prop("value", null); compareStep2(null); form.render(); }; function compareStep2(compareDate) { depotId = $("#depotId").val(); if (!depotId) { layer.msg("请先选择仓库!"); return; } if (!compareDate) { compareDate = $("#compareCheckDate").val(); } var data = { depotId: depotId, checkMonth: compareDate, extBatchId: grainData.batchId }; $.ajax({ type: "POST", url: "../../basic/grain/page-list", dataType: "json", contentType: "application/json;charset=UTF-8", data: JSON.stringify(data), success: function (result) { if (result.code != "0000") { layer.msg(result.msg); } else { table.render({ elem: '#tableSelect', height: 450, data: result.data, page: false, limit: 100, skin: "nob", even: true, size: "sm", cols: [[{ type: 'radio', fixed: 'left', title: '选择' }, { field: 'receiveDate', title: '检测时间', align: 'center', }]] }); } }, error: function () { layer.msg("获取当前仓库检测记录失败,请重新尝试!!"); } }); }; // 开始批次对比 function compareStep3(dataA, dataB) { $.ajax({ type: "POST", url: "../../basic/grain/data-compare", dataType: "json", contentType: "application/json;charset=UTF-8", data: JSON.stringify({ dataA: dataA, dataB: dataB }), success: function (result) { if (result.code != "0000") { layer.msg(result.msg); } else { // 覆盖页面中的粮情数据 grainData = result.data; // 显示采集点信息 resetGrainChart3d(); // 粮情信息赋值 renderGrainInfo(); layer.closeAll(); } }, error: function () { layer.msg("批次对比出现异常,请重新选择"); } }); }; // 点击刷新操作 function flushGrain(checkMonth) { compareData = null; depotId = $("#depotId").val(); if (!depotId) { layer.alert("请先选择仓库!"); return; } var data = { depotId: depotId, checkMonth: checkMonth }; listGrainData = [{"batchId":"202411051400","cable":"4-6-8","checkUser":"系统","companyId":"5303","depotData":{"bhId":"1","buildingId":"91310114703439394M0010001","checkDate":"2024-06-25","companyId":"5303","depotStatus":"4","depotStatusName":"出库中","depotType":"02","depotTypeName":"浅圆仓","deptId":"5303_001","foodLevel":"01","foodLevelName":"一等","foodLocation":"上海市","foodType":"122","foodTypeName":"区级地方储备粮","foodVariety":"1130000","foodVarietyName":"稻谷","foodYear":"2022","id":"P0101","name":"P01-01","perImpurity":0.36,"perWet":13.7,"storageMax":3000000,"storageReal":0,"storeDate":"2024-06-27","storeKeeper":"wmf","storeKeeperLevel":"高级保管员","storeKeeperName":"王美福","storeKeeperPhone":"####","storeType":"1"},"depotId":"91310114703439394M0010007002","humidityIn":60.1,"humidityOut":52.2,"listLays":[{"fz":1,"sumInNum":24,"sumInTemp":511.8000000000001,"sumNum":48,"sumOutNum":24,"sumOutTemp":514.4000000000001,"sumTemp":1026.2,"tempAve":21.4,"tempAveIn":21.3,"tempAveOut":21.4,"tempMax":24.3,"tempMin":19.6,"z":0},{"fz":2,"sumInNum":24,"sumInTemp":442.70000000000005,"sumNum":48,"sumOutNum":24,"sumOutTemp":467.6,"sumTemp":910.3,"tempAve":19,"tempAveIn":18.4,"tempAveOut":19.5,"tempMax":24.1,"tempMin":13.6,"z":1},{"fz":3,"sumInNum":24,"sumInTemp":485,"sumNum":48,"sumOutNum":24,"sumOutTemp":500.50000000000006,"sumTemp":985.5,"tempAve":20.5,"tempAveIn":20.2,"tempAveOut":20.9,"tempMax":23.3,"tempMin":16.8,"z":2},{"fz":4,"sumInNum":24,"sumInTemp":477.1,"sumNum":48,"sumOutNum":24,"sumOutTemp":501.4000000000001,"sumTemp":978.5,"tempAve":20.4,"tempAveIn":19.9,"tempAveOut":20.9,"tempMax":23.7,"tempMin":18.4,"z":3}],"listPoints":[{"fz":1,"temp":21.9,"x":7,"y":0,"z":0},{"fz":2,"temp":21.1,"x":7,"y":0,"z":1},{"fz":3,"temp":21.6,"x":7,"y":0,"z":2},{"fz":4,"temp":20.3,"x":7,"y":0,"z":3},{"fz":1,"temp":21.8,"x":7,"y":1,"z":0},{"fz":2,"temp":20.5,"x":7,"y":1,"z":1},{"fz":3,"temp":20.8,"x":7,"y":1,"z":2},{"fz":4,"temp":19.9,"x":7,"y":1,"z":3},{"fz":1,"temp":21.5,"x":7,"y":2,"z":0},{"fz":2,"temp":19.7,"x":7,"y":2,"z":1},{"fz":3,"temp":20,"x":7,"y":2,"z":2},{"fz":4,"temp":19,"x":7,"y":2,"z":3},{"fz":1,"temp":21.1,"x":7,"y":3,"z":0},{"fz":2,"temp":18.4,"x":7,"y":3,"z":1},{"fz":3,"temp":19.3,"x":7,"y":3,"z":2},{"fz":4,"temp":18.6,"x":7,"y":3,"z":3},{"fz":1,"temp":19.7,"x":7,"y":4,"z":0},{"fz":2,"temp":17.3,"x":7,"y":4,"z":1},{"fz":3,"temp":19,"x":7,"y":4,"z":2},{"fz":4,"temp":19,"x":7,"y":4,"z":3},{"fz":1,"temp":21.5,"x":7,"y":5,"z":0},{"fz":2,"temp":17.1,"x":7,"y":5,"z":1},{"fz":3,"temp":19.2,"x":7,"y":5,"z":2},{"fz":4,"temp":19.7,"x":7,"y":5,"z":3},{"fz":1,"temp":21.8,"x":6,"y":0,"z":0},{"fz":2,"temp":21.6,"x":6,"y":0,"z":1},{"fz":3,"temp":21.7,"x":6,"y":0,"z":2},{"fz":4,"temp":21.6,"x":6,"y":0,"z":3},{"fz":1,"temp":21.1,"x":6,"y":1,"z":0},{"fz":2,"temp":20.4,"x":6,"y":1,"z":1},{"fz":3,"temp":21.1,"x":6,"y":1,"z":2},{"fz":4,"temp":20.9,"x":6,"y":1,"z":3},{"fz":1,"temp":21.6,"x":6,"y":2,"z":0},{"fz":2,"temp":19.5,"x":6,"y":2,"z":1},{"fz":3,"temp":20.5,"x":6,"y":2,"z":2},{"fz":4,"temp":20.3,"x":6,"y":2,"z":3},{"fz":1,"temp":21.3,"x":6,"y":3,"z":0},{"fz":2,"temp":19,"x":6,"y":3,"z":1},{"fz":3,"temp":20.3,"x":6,"y":3,"z":2},{"fz":4,"temp":19.1,"x":6,"y":3,"z":3},{"fz":1,"temp":21.5,"x":6,"y":4,"z":0},{"fz":2,"temp":17.9,"x":6,"y":4,"z":1},{"fz":3,"temp":20,"x":6,"y":4,"z":2},{"fz":4,"temp":20,"x":6,"y":4,"z":3},{"fz":1,"temp":21.3,"x":6,"y":5,"z":0},{"fz":2,"temp":18.1,"x":6,"y":5,"z":1},{"fz":3,"temp":20,"x":6,"y":5,"z":2},{"fz":4,"temp":19.7,"x":6,"y":5,"z":3},{"fz":1,"temp":21.8,"x":5,"y":0,"z":0},{"fz":2,"temp":21,"x":5,"y":0,"z":1},{"fz":3,"temp":22,"x":5,"y":0,"z":2},{"fz":4,"temp":22,"x":5,"y":0,"z":3},{"fz":1,"temp":21.9,"x":5,"y":1,"z":0},{"fz":2,"temp":20.3,"x":5,"y":1,"z":1},{"fz":3,"temp":20.9,"x":5,"y":1,"z":2},{"fz":4,"temp":20.1,"x":5,"y":1,"z":3},{"fz":1,"temp":21.7,"x":5,"y":2,"z":0},{"fz":2,"temp":18.3,"x":5,"y":2,"z":1},{"fz":3,"temp":19.8,"x":5,"y":2,"z":2},{"fz":4,"temp":18.9,"x":5,"y":2,"z":3},{"fz":1,"temp":21.1,"x":5,"y":3,"z":0},{"fz":2,"temp":15.1,"x":5,"y":3,"z":1},{"fz":3,"temp":18,"x":5,"y":3,"z":2},{"fz":4,"temp":18.4,"x":5,"y":3,"z":3},{"fz":1,"temp":21.4,"x":5,"y":4,"z":0},{"fz":2,"temp":13.6,"x":5,"y":4,"z":1},{"fz":3,"temp":16.8,"x":5,"y":4,"z":2},{"fz":4,"temp":18.6,"x":5,"y":4,"z":3},{"fz":1,"temp":20.8,"x":5,"y":5,"z":0},{"fz":2,"temp":14.2,"x":5,"y":5,"z":1},{"fz":3,"temp":17.3,"x":5,"y":5,"z":2},{"fz":4,"temp":19.5,"x":5,"y":5,"z":3},{"fz":1,"temp":21.8,"x":4,"y":0,"z":0},{"fz":2,"temp":21.3,"x":4,"y":0,"z":1},{"fz":3,"temp":21.3,"x":4,"y":0,"z":2},{"fz":4,"temp":21.3,"x":4,"y":0,"z":3},{"fz":1,"temp":21.8,"x":4,"y":1,"z":0},{"fz":2,"temp":20,"x":4,"y":1,"z":1},{"fz":3,"temp":21.1,"x":4,"y":1,"z":2},{"fz":4,"temp":20.3,"x":4,"y":1,"z":3},{"fz":1,"temp":21.6,"x":4,"y":2,"z":0},{"fz":2,"temp":18.2,"x":4,"y":2,"z":1},{"fz":3,"temp":20,"x":4,"y":2,"z":2},{"fz":4,"temp":19.1,"x":4,"y":2,"z":3},{"fz":1,"temp":20.3,"x":4,"y":3,"z":0},{"fz":2,"temp":17,"x":4,"y":3,"z":1},{"fz":3,"temp":20.2,"x":4,"y":3,"z":2},{"fz":4,"temp":18.6,"x":4,"y":3,"z":3},{"fz":1,"temp":20.4,"x":4,"y":4,"z":0},{"fz":2,"temp":14.9,"x":4,"y":4,"z":1},{"fz":3,"temp":18.5,"x":4,"y":4,"z":2},{"fz":4,"temp":18.6,"x":4,"y":4,"z":3},{"fz":1,"temp":19.8,"x":4,"y":5,"z":0},{"fz":2,"temp":15.1,"x":4,"y":5,"z":1},{"fz":3,"temp":18.8,"x":4,"y":5,"z":2},{"fz":4,"temp":20.1,"x":4,"y":5,"z":3},{"fz":1,"temp":22,"x":3,"y":0,"z":0},{"fz":2,"temp":22.6,"x":3,"y":0,"z":1},{"fz":3,"temp":22.9,"x":3,"y":0,"z":2},{"fz":4,"temp":22.4,"x":3,"y":0,"z":3},{"fz":1,"temp":21.8,"x":3,"y":1,"z":0},{"fz":2,"temp":21.6,"x":3,"y":1,"z":1},{"fz":3,"temp":21.8,"x":3,"y":1,"z":2},{"fz":4,"temp":21.5,"x":3,"y":1,"z":3},{"fz":1,"temp":21.6,"x":3,"y":2,"z":0},{"fz":2,"temp":20.3,"x":3,"y":2,"z":1},{"fz":3,"temp":21.4,"x":3,"y":2,"z":2},{"fz":4,"temp":20.6,"x":3,"y":2,"z":3},{"fz":1,"temp":21.6,"x":3,"y":3,"z":0},{"fz":2,"temp":18.8,"x":3,"y":3,"z":1},{"fz":3,"temp":21,"x":3,"y":3,"z":2},{"fz":4,"temp":20.3,"x":3,"y":3,"z":3},{"fz":1,"temp":21.2,"x":3,"y":4,"z":0},{"fz":2,"temp":15.7,"x":3,"y":4,"z":1},{"fz":3,"temp":18.6,"x":3,"y":4,"z":2},{"fz":4,"temp":20,"x":3,"y":4,"z":3},{"fz":1,"temp":20.9,"x":3,"y":5,"z":0},{"fz":2,"temp":15.1,"x":3,"y":5,"z":1},{"fz":3,"temp":19.3,"x":3,"y":5,"z":2},{"fz":4,"temp":19.6,"x":3,"y":5,"z":3},{"fz":1,"temp":22,"x":2,"y":0,"z":0},{"fz":2,"temp":22.3,"x":2,"y":0,"z":1},{"fz":3,"temp":22.3,"x":2,"y":0,"z":2},{"fz":4,"temp":22.5,"x":2,"y":0,"z":3},{"fz":1,"temp":21.8,"x":2,"y":1,"z":0},{"fz":2,"temp":21.2,"x":2,"y":1,"z":1},{"fz":3,"temp":21.9,"x":2,"y":1,"z":2},{"fz":4,"temp":21.5,"x":2,"y":1,"z":3},{"fz":1,"temp":21.8,"x":2,"y":2,"z":0},{"fz":2,"temp":20.5,"x":2,"y":2,"z":1},{"fz":3,"temp":21.3,"x":2,"y":2,"z":2},{"fz":4,"temp":20.8,"x":2,"y":2,"z":3},{"fz":1,"temp":21.3,"x":2,"y":3,"z":0},{"fz":2,"temp":18,"x":2,"y":3,"z":1},{"fz":3,"temp":20.3,"x":2,"y":3,"z":2},{"fz":4,"temp":19.5,"x":2,"y":3,"z":3},{"fz":1,"temp":20.8,"x":2,"y":4,"z":0},{"fz":2,"temp":14.6,"x":2,"y":4,"z":1},{"fz":3,"temp":18,"x":2,"y":4,"z":2},{"fz":4,"temp":19.1,"x":2,"y":4,"z":3},{"fz":1,"temp":20.8,"x":2,"y":5,"z":0},{"fz":2,"temp":16,"x":2,"y":5,"z":1},{"fz":3,"temp":19,"x":2,"y":5,"z":2},{"fz":4,"temp":20.6,"x":2,"y":5,"z":3},{"fz":1,"temp":21.9,"x":1,"y":0,"z":0},{"fz":2,"temp":23,"x":1,"y":0,"z":1},{"fz":3,"temp":22.9,"x":1,"y":0,"z":2},{"fz":4,"temp":22,"x":1,"y":0,"z":3},{"fz":1,"temp":21.6,"x":1,"y":1,"z":0},{"fz":2,"temp":21.3,"x":1,"y":1,"z":1},{"fz":3,"temp":22.1,"x":1,"y":1,"z":2},{"fz":4,"temp":21.5,"x":1,"y":1,"z":3},{"fz":1,"temp":21.6,"x":1,"y":2,"z":0},{"fz":2,"temp":20.8,"x":1,"y":2,"z":1},{"fz":3,"temp":21.8,"x":1,"y":2,"z":2},{"fz":4,"temp":20.6,"x":1,"y":2,"z":3},{"fz":1,"temp":21.4,"x":1,"y":3,"z":0},{"fz":2,"temp":19.1,"x":1,"y":3,"z":1},{"fz":3,"temp":20.9,"x":1,"y":3,"z":2},{"fz":4,"temp":19.9,"x":1,"y":3,"z":3},{"fz":1,"temp":19.6,"x":1,"y":4,"z":0},{"fz":2,"temp":16.6,"x":1,"y":4,"z":1},{"fz":3,"temp":18.7,"x":1,"y":4,"z":2},{"fz":4,"temp":18.9,"x":1,"y":4,"z":3},{"fz":1,"temp":19.6,"x":1,"y":5,"z":0},{"fz":2,"temp":15,"x":1,"y":5,"z":1},{"fz":3,"temp":19.1,"x":1,"y":5,"z":2},{"fz":4,"temp":19.6,"x":1,"y":5,"z":3},{"fz":1,"temp":24.3,"x":0,"y":0,"z":0},{"fz":2,"temp":24.1,"x":0,"y":0,"z":1},{"fz":3,"temp":23.3,"x":0,"y":0,"z":2},{"fz":4,"temp":23.7,"x":0,"y":0,"z":3},{"fz":1,"temp":22.7,"x":0,"y":1,"z":0},{"fz":2,"temp":23.1,"x":0,"y":1,"z":1},{"fz":3,"temp":22.9,"x":0,"y":1,"z":2},{"fz":4,"temp":22.3,"x":0,"y":1,"z":3},{"fz":1,"temp":21.6,"x":0,"y":2,"z":0},{"fz":2,"temp":21.8,"x":0,"y":2,"z":1},{"fz":3,"temp":22.5,"x":0,"y":2,"z":2},{"fz":4,"temp":22,"x":0,"y":2,"z":3},{"fz":1,"temp":21.5,"x":0,"y":3,"z":0},{"fz":2,"temp":21.2,"x":0,"y":3,"z":1},{"fz":3,"temp":22.5,"x":0,"y":3,"z":2},{"fz":4,"temp":22.4,"x":0,"y":3,"z":3},{"fz":1,"temp":21.3,"x":0,"y":4,"z":0},{"fz":2,"temp":19.2,"x":0,"y":4,"z":1},{"fz":3,"temp":21.2,"x":0,"y":4,"z":2},{"fz":4,"temp":21.5,"x":0,"y":4,"z":3},{"fz":1,"temp":21,"x":0,"y":5,"z":0},{"fz":2,"temp":18.8,"x":0,"y":5,"z":1},{"fz":3,"temp":21.6,"x":0,"y":5,"z":2},{"fz":4,"temp":22.1,"x":0,"y":5,"z":3}],"listRows":[{"sumNum":32,"sumTemp":708.3,"tempAve":22.1,"tempMax":24.3,"tempMin":20.3,"y":0},{"sumNum":32,"sumTemp":683.5,"tempAve":21.4,"tempMax":23.1,"tempMin":19.9,"y":1},{"sumNum":32,"sumTemp":660.7,"tempAve":20.6,"tempMax":22.5,"tempMin":18.2,"y":2},{"sumNum":32,"sumTemp":635.5,"tempAve":19.9,"tempMax":22.5,"tempMin":15.1,"y":3},{"sumNum":32,"sumTemp":602.2,"tempAve":18.8,"tempMax":21.5,"tempMin":13.6,"y":4},{"sumNum":32,"sumTemp":610.3,"tempAve":19.1,"tempMax":22.1,"tempMin":14.2,"y":5}],"mquality":{"checkItems":[{"checkId":"ZJ_202409190005","companyId":"5303","operaSymbol":"<=","perImpurity":0,"perWet":0,"result":"1","standardId":"C01","standardName":"水分","unit":"%","upperLimit":14.5,"value":"13.7"},{"checkId":"ZJ_202409190005","companyId":"5303","operaSymbol":"<=","perImpurity":0,"perWet":0,"standardId":"C02","standardName":"杂质","unit":"%","upperLimit":1},{"checkId":"ZJ_202409190005","companyId":"5303","operaSymbol":">=","perImpurity":0,"perWet":0,"standardId":"C09","standardName":"出糙率","unit":"%","upperLimit":77},{"checkId":"ZJ_202409190005","companyId":"5303","operaSymbol":">=","perImpurity":0,"perWet":0,"standardId":"C10","standardName":"整精米粒","unit":"%","upperLimit":55},{"checkId":"ZJ_202409190005","companyId":"5303","operaSymbol":"<=","perImpurity":0,"perWet":0,"standardId":"C11","standardName":"黄粒米","unit":"%","upperLimit":1},{"checkId":"ZJ_202409190005","companyId":"5303","operaSymbol":"<=","perImpurity":0,"perWet":0,"standardId":"C12","standardName":"谷外糙米","unit":"%","upperLimit":4},{"checkId":"ZJ_202409190005","companyId":"5303","operaSymbol":"<=","perImpurity":0,"perWet":0,"standardId":"C13","standardName":"互混率","unit":"%","upperLimit":5}],"checkUser":"凌伟","companyId":"5303","dbsl":2151990,"depotId":"91310114703439394M0010007002","deptId":"5303_001","foodLevel":"01","foodVariety":"1130000","id":"ZJ_202409190005","normalYear":"1","result":"达标#宜存#合格","shrxm":"姚佳岚","standard":"1","time":1726707692000,"type":"06","unit":"安亭储备库","updateTime":1726707762000,"user":"凌伟","ypbh":"202410919090132","ypdj":"01","ypsl":1,"zblb":"1#2#3"},"points":"21.9,21.1,21.6,20.3,21.8,20.5,20.8,19.9,21.5,19.7,20.0,19.0,21.1,18.4,19.3,18.6,19.7,17.3,19.0,19.0,21.5,17.1,19.2,19.7,21.8,21.6,21.7,21.6,21.1,20.4,21.1,20.9,21.6,19.5,20.5,20.3,21.3,19.0,20.3,19.1,21.5,17.9,20.0,20.0,21.3,18.1,20.0,19.7,21.8,21.0,22.0,22.0,21.9,20.3,20.9,20.1,21.7,18.3,19.8,18.9,21.1,15.1,18.0,18.4,21.4,13.6,16.8,18.6,20.8,14.2,17.3,19.5,21.8,21.3,21.3,21.3,21.8,20.0,21.1,20.3,21.6,18.2,20.0,19.1,20.3,17.0,20.2,18.6,20.4,14.9,18.5,18.6,19.8,15.1,18.8,20.1,22.0,22.6,22.9,22.4,21.8,21.6,21.8,21.5,21.6,20.3,21.4,20.6,21.6,18.8,21.0,20.3,21.2,15.7,18.6,20.0,20.9,15.1,19.3,19.6,22.0,22.3,22.3,22.5,21.8,21.2,21.9,21.5,21.8,20.5,21.3,20.8,21.3,18.0,20.3,19.5,20.8,14.6,18.0,19.1,20.8,16.0,19.0,20.6,21.9,23.0,22.9,22.0,21.6,21.3,22.1,21.5,21.6,20.8,21.8,20.6,21.4,19.1,20.9,19.9,19.6,16.6,18.7,18.9,19.6,15.0,19.1,19.6,24.3,24.1,23.3,23.7,22.7,23.1,22.9,22.3,21.6,21.8,22.5,22.0,21.5,21.2,22.5,22.4,21.3,19.2,21.2,21.5,21.0,18.8,21.6,22.1","receiveDate":"2024-11-16 09:26:56","remark":"粮温正常","sysDate":1747912482729,"tempAve":20.3,"tempIn":22,"tempMax":24.3,"tempMin":13.6,"tempOut":18.4,"weather":"无雨雪"},{"batchId":"202411041400","cable":"4-6-8","checkUser":"系统","companyId":"5303","depotData":{"$ref":"$[0][0].depotData"},"depotId":"91310114703439394M0010007002","humidityIn":62.2,"humidityOut":56.9,"listLays":[{"fz":1,"sumInNum":24,"sumInTemp":508.90000000000015,"sumNum":48,"sumOutNum":24,"sumOutTemp":512.3,"sumTemp":1021.2,"tempAve":21.3,"tempAveIn":21.2,"tempAveOut":21.3,"tempMax":24.4,"tempMin":19.6,"z":0},{"fz":2,"sumInNum":24,"sumInTemp":442.4000000000001,"sumNum":48,"sumOutNum":24,"sumOutTemp":466.9,"sumTemp":909.3,"tempAve":18.9,"tempAveIn":18.4,"tempAveOut":19.5,"tempMax":24.1,"tempMin":13.5,"z":1},{"fz":3,"sumInNum":24,"sumInTemp":485.1,"sumNum":48,"sumOutNum":24,"sumOutTemp":500.5000000000001,"sumTemp":985.6,"tempAve":20.5,"tempAveIn":20.2,"tempAveOut":20.9,"tempMax":23.3,"tempMin":16.8,"z":2},{"fz":4,"sumInNum":24,"sumInTemp":477.70000000000005,"sumNum":48,"sumOutNum":24,"sumOutTemp":501.9000000000001,"sumTemp":979.6,"tempAve":20.4,"tempAveIn":19.9,"tempAveOut":20.9,"tempMax":23.8,"tempMin":18.4,"z":3}],"listPoints":[{"fz":1,"temp":22,"x":7,"y":0,"z":0},{"fz":2,"temp":21.1,"x":7,"y":0,"z":1},{"fz":3,"temp":21.6,"x":7,"y":0,"z":2},{"fz":4,"temp":20.4,"x":7,"y":0,"z":3},{"fz":1,"temp":21.6,"x":7,"y":1,"z":0},{"fz":2,"temp":20.5,"x":7,"y":1,"z":1},{"fz":3,"temp":20.8,"x":7,"y":1,"z":2},{"fz":4,"temp":19.9,"x":7,"y":1,"z":3},{"fz":1,"temp":21.5,"x":7,"y":2,"z":0},{"fz":2,"temp":19.7,"x":7,"y":2,"z":1},{"fz":3,"temp":20,"x":7,"y":2,"z":2},{"fz":4,"temp":19,"x":7,"y":2,"z":3},{"fz":1,"temp":21,"x":7,"y":3,"z":0},{"fz":2,"temp":18.3,"x":7,"y":3,"z":1},{"fz":3,"temp":19.3,"x":7,"y":3,"z":2},{"fz":4,"temp":18.6,"x":7,"y":3,"z":3},{"fz":1,"temp":19.6,"x":7,"y":4,"z":0},{"fz":2,"temp":17.3,"x":7,"y":4,"z":1},{"fz":3,"temp":19,"x":7,"y":4,"z":2},{"fz":4,"temp":19,"x":7,"y":4,"z":3},{"fz":1,"temp":21.3,"x":7,"y":5,"z":0},{"fz":2,"temp":17,"x":7,"y":5,"z":1},{"fz":3,"temp":19.2,"x":7,"y":5,"z":2},{"fz":4,"temp":19.7,"x":7,"y":5,"z":3},{"fz":1,"temp":21.7,"x":6,"y":0,"z":0},{"fz":2,"temp":21.5,"x":6,"y":0,"z":1},{"fz":3,"temp":21.7,"x":6,"y":0,"z":2},{"fz":4,"temp":21.6,"x":6,"y":0,"z":3},{"fz":1,"temp":21.1,"x":6,"y":1,"z":0},{"fz":2,"temp":20.4,"x":6,"y":1,"z":1},{"fz":3,"temp":21.1,"x":6,"y":1,"z":2},{"fz":4,"temp":21,"x":6,"y":1,"z":3},{"fz":1,"temp":21.5,"x":6,"y":2,"z":0},{"fz":2,"temp":19.5,"x":6,"y":2,"z":1},{"fz":3,"temp":20.5,"x":6,"y":2,"z":2},{"fz":4,"temp":20.3,"x":6,"y":2,"z":3},{"fz":1,"temp":21.2,"x":6,"y":3,"z":0},{"fz":2,"temp":19,"x":6,"y":3,"z":1},{"fz":3,"temp":20.3,"x":6,"y":3,"z":2},{"fz":4,"temp":19.1,"x":6,"y":3,"z":3},{"fz":1,"temp":21.3,"x":6,"y":4,"z":0},{"fz":2,"temp":17.9,"x":6,"y":4,"z":1},{"fz":3,"temp":20,"x":6,"y":4,"z":2},{"fz":4,"temp":20,"x":6,"y":4,"z":3},{"fz":1,"temp":21.1,"x":6,"y":5,"z":0},{"fz":2,"temp":18,"x":6,"y":5,"z":1},{"fz":3,"temp":20,"x":6,"y":5,"z":2},{"fz":4,"temp":19.7,"x":6,"y":5,"z":3},{"fz":1,"temp":21.6,"x":5,"y":0,"z":0},{"fz":2,"temp":21,"x":5,"y":0,"z":1},{"fz":3,"temp":22,"x":5,"y":0,"z":2},{"fz":4,"temp":22,"x":5,"y":0,"z":3},{"fz":1,"temp":21.7,"x":5,"y":1,"z":0},{"fz":2,"temp":20.3,"x":5,"y":1,"z":1},{"fz":3,"temp":20.9,"x":5,"y":1,"z":2},{"fz":4,"temp":20.1,"x":5,"y":1,"z":3},{"fz":1,"temp":21.6,"x":5,"y":2,"z":0},{"fz":2,"temp":18.3,"x":5,"y":2,"z":1},{"fz":3,"temp":19.8,"x":5,"y":2,"z":2},{"fz":4,"temp":18.9,"x":5,"y":2,"z":3},{"fz":1,"temp":21,"x":5,"y":3,"z":0},{"fz":2,"temp":15.1,"x":5,"y":3,"z":1},{"fz":3,"temp":18,"x":5,"y":3,"z":2},{"fz":4,"temp":18.4,"x":5,"y":3,"z":3},{"fz":1,"temp":21.3,"x":5,"y":4,"z":0},{"fz":2,"temp":13.5,"x":5,"y":4,"z":1},{"fz":3,"temp":16.8,"x":5,"y":4,"z":2},{"fz":4,"temp":18.6,"x":5,"y":4,"z":3},{"fz":1,"temp":20.7,"x":5,"y":5,"z":0},{"fz":2,"temp":14.1,"x":5,"y":5,"z":1},{"fz":3,"temp":17.3,"x":5,"y":5,"z":2},{"fz":4,"temp":19.6,"x":5,"y":5,"z":3},{"fz":1,"temp":21.6,"x":4,"y":0,"z":0},{"fz":2,"temp":21.3,"x":4,"y":0,"z":1},{"fz":3,"temp":21.3,"x":4,"y":0,"z":2},{"fz":4,"temp":21.3,"x":4,"y":0,"z":3},{"fz":1,"temp":21.7,"x":4,"y":1,"z":0},{"fz":2,"temp":20,"x":4,"y":1,"z":1},{"fz":3,"temp":21.1,"x":4,"y":1,"z":2},{"fz":4,"temp":20.4,"x":4,"y":1,"z":3},{"fz":1,"temp":21.5,"x":4,"y":2,"z":0},{"fz":2,"temp":18.2,"x":4,"y":2,"z":1},{"fz":3,"temp":20,"x":4,"y":2,"z":2},{"fz":4,"temp":19.1,"x":4,"y":2,"z":3},{"fz":1,"temp":20.3,"x":4,"y":3,"z":0},{"fz":2,"temp":17,"x":4,"y":3,"z":1},{"fz":3,"temp":20.2,"x":4,"y":3,"z":2},{"fz":4,"temp":18.6,"x":4,"y":3,"z":3},{"fz":1,"temp":20.4,"x":4,"y":4,"z":0},{"fz":2,"temp":14.9,"x":4,"y":4,"z":1},{"fz":3,"temp":18.5,"x":4,"y":4,"z":2},{"fz":4,"temp":18.6,"x":4,"y":4,"z":3},{"fz":1,"temp":19.9,"x":4,"y":5,"z":0},{"fz":2,"temp":15.1,"x":4,"y":5,"z":1},{"fz":3,"temp":18.8,"x":4,"y":5,"z":2},{"fz":4,"temp":20.1,"x":4,"y":5,"z":3},{"fz":1,"temp":21.9,"x":3,"y":0,"z":0},{"fz":2,"temp":22.6,"x":3,"y":0,"z":1},{"fz":3,"temp":22.9,"x":3,"y":0,"z":2},{"fz":4,"temp":22.5,"x":3,"y":0,"z":3},{"fz":1,"temp":21.6,"x":3,"y":1,"z":0},{"fz":2,"temp":21.6,"x":3,"y":1,"z":1},{"fz":3,"temp":21.8,"x":3,"y":1,"z":2},{"fz":4,"temp":21.6,"x":3,"y":1,"z":3},{"fz":1,"temp":21.5,"x":3,"y":2,"z":0},{"fz":2,"temp":20.3,"x":3,"y":2,"z":1},{"fz":3,"temp":21.4,"x":3,"y":2,"z":2},{"fz":4,"temp":20.6,"x":3,"y":2,"z":3},{"fz":1,"temp":21.4,"x":3,"y":3,"z":0},{"fz":2,"temp":18.8,"x":3,"y":3,"z":1},{"fz":3,"temp":21,"x":3,"y":3,"z":2},{"fz":4,"temp":20.3,"x":3,"y":3,"z":3},{"fz":1,"temp":21,"x":3,"y":4,"z":0},{"fz":2,"temp":15.6,"x":3,"y":4,"z":1},{"fz":3,"temp":18.6,"x":3,"y":4,"z":2},{"fz":4,"temp":20,"x":3,"y":4,"z":3},{"fz":1,"temp":20.8,"x":3,"y":5,"z":0},{"fz":2,"temp":15.1,"x":3,"y":5,"z":1},{"fz":3,"temp":19.3,"x":3,"y":5,"z":2},{"fz":4,"temp":19.6,"x":3,"y":5,"z":3},{"fz":1,"temp":22,"x":2,"y":0,"z":0},{"fz":2,"temp":22.3,"x":2,"y":0,"z":1},{"fz":3,"temp":22.3,"x":2,"y":0,"z":2},{"fz":4,"temp":22.5,"x":2,"y":0,"z":3},{"fz":1,"temp":21.6,"x":2,"y":1,"z":0},{"fz":2,"temp":21.2,"x":2,"y":1,"z":1},{"fz":3,"temp":21.9,"x":2,"y":1,"z":2},{"fz":4,"temp":21.6,"x":2,"y":1,"z":3},{"fz":1,"temp":21.6,"x":2,"y":2,"z":0},{"fz":2,"temp":20.4,"x":2,"y":2,"z":1},{"fz":3,"temp":21.3,"x":2,"y":2,"z":2},{"fz":4,"temp":20.8,"x":2,"y":2,"z":3},{"fz":1,"temp":21.1,"x":2,"y":3,"z":0},{"fz":2,"temp":18,"x":2,"y":3,"z":1},{"fz":3,"temp":20.3,"x":2,"y":3,"z":2},{"fz":4,"temp":19.5,"x":2,"y":3,"z":3},{"fz":1,"temp":20.6,"x":2,"y":4,"z":0},{"fz":2,"temp":14.6,"x":2,"y":4,"z":1},{"fz":3,"temp":18,"x":2,"y":4,"z":2},{"fz":4,"temp":19.2,"x":2,"y":4,"z":3},{"fz":1,"temp":20.6,"x":2,"y":5,"z":0},{"fz":2,"temp":15.9,"x":2,"y":5,"z":1},{"fz":3,"temp":19.1,"x":2,"y":5,"z":2},{"fz":4,"temp":20.6,"x":2,"y":5,"z":3},{"fz":1,"temp":21.7,"x":1,"y":0,"z":0},{"fz":2,"temp":23,"x":1,"y":0,"z":1},{"fz":3,"temp":22.9,"x":1,"y":0,"z":2},{"fz":4,"temp":22,"x":1,"y":0,"z":3},{"fz":1,"temp":21.5,"x":1,"y":1,"z":0},{"fz":2,"temp":21.3,"x":1,"y":1,"z":1},{"fz":3,"temp":22.1,"x":1,"y":1,"z":2},{"fz":4,"temp":21.6,"x":1,"y":1,"z":3},{"fz":1,"temp":21.5,"x":1,"y":2,"z":0},{"fz":2,"temp":20.8,"x":1,"y":2,"z":1},{"fz":3,"temp":21.8,"x":1,"y":2,"z":2},{"fz":4,"temp":20.6,"x":1,"y":2,"z":3},{"fz":1,"temp":21.3,"x":1,"y":3,"z":0},{"fz":2,"temp":19.1,"x":1,"y":3,"z":1},{"fz":3,"temp":21,"x":1,"y":3,"z":2},{"fz":4,"temp":19.9,"x":1,"y":3,"z":3},{"fz":1,"temp":19.6,"x":1,"y":4,"z":0},{"fz":2,"temp":16.6,"x":1,"y":4,"z":1},{"fz":3,"temp":18.7,"x":1,"y":4,"z":2},{"fz":4,"temp":18.9,"x":1,"y":4,"z":3},{"fz":1,"temp":19.6,"x":1,"y":5,"z":0},{"fz":2,"temp":14.9,"x":1,"y":5,"z":1},{"fz":3,"temp":19.1,"x":1,"y":5,"z":2},{"fz":4,"temp":19.6,"x":1,"y":5,"z":3},{"fz":1,"temp":24.4,"x":0,"y":0,"z":0},{"fz":2,"temp":24.1,"x":0,"y":0,"z":1},{"fz":3,"temp":23.3,"x":0,"y":0,"z":2},{"fz":4,"temp":23.8,"x":0,"y":0,"z":3},{"fz":1,"temp":22.8,"x":0,"y":1,"z":0},{"fz":2,"temp":23.1,"x":0,"y":1,"z":1},{"fz":3,"temp":22.8,"x":0,"y":1,"z":2},{"fz":4,"temp":22.3,"x":0,"y":1,"z":3},{"fz":1,"temp":21.5,"x":0,"y":2,"z":0},{"fz":2,"temp":21.8,"x":0,"y":2,"z":1},{"fz":3,"temp":22.5,"x":0,"y":2,"z":2},{"fz":4,"temp":22,"x":0,"y":2,"z":3},{"fz":1,"temp":21.3,"x":0,"y":3,"z":0},{"fz":2,"temp":21.2,"x":0,"y":3,"z":1},{"fz":3,"temp":22.5,"x":0,"y":3,"z":2},{"fz":4,"temp":22.5,"x":0,"y":3,"z":3},{"fz":1,"temp":21.2,"x":0,"y":4,"z":0},{"fz":2,"temp":19.2,"x":0,"y":4,"z":1},{"fz":3,"temp":21.2,"x":0,"y":4,"z":2},{"fz":4,"temp":21.5,"x":0,"y":4,"z":3},{"fz":1,"temp":20.9,"x":0,"y":5,"z":0},{"fz":2,"temp":18.8,"x":0,"y":5,"z":1},{"fz":3,"temp":21.6,"x":0,"y":5,"z":2},{"fz":4,"temp":22.1,"x":0,"y":5,"z":3}],"listRows":[{"sumNum":32,"sumTemp":707.9,"tempAve":22.1,"tempMax":24.4,"tempMin":20.4,"y":0},{"sumNum":32,"sumTemp":683,"tempAve":21.3,"tempMax":23.1,"tempMin":19.9,"y":1},{"sumNum":32,"sumTemp":659.8,"tempAve":20.6,"tempMax":22.5,"tempMin":18.2,"y":2},{"sumNum":32,"sumTemp":634.6,"tempAve":19.8,"tempMax":22.5,"tempMin":15.1,"y":3},{"sumNum":32,"sumTemp":601.2,"tempAve":18.8,"tempMax":21.5,"tempMin":13.5,"y":4},{"sumNum":32,"sumTemp":609.2,"tempAve":19,"tempMax":22.1,"tempMin":14.1,"y":5}],"mquality":{"$ref":"$[0][0].mquality"},"points":"22.0,21.1,21.6,20.4,21.6,20.5,20.8,19.9,21.5,19.7,20.0,19.0,21.0,18.3,19.3,18.6,19.6,17.3,19.0,19.0,21.3,17.0,19.2,19.7,21.7,21.5,21.7,21.6,21.1,20.4,21.1,21.0,21.5,19.5,20.5,20.3,21.2,19.0,20.3,19.1,21.3,17.9,20.0,20.0,21.1,18.0,20.0,19.7,21.6,21.0,22.0,22.0,21.7,20.3,20.9,20.1,21.6,18.3,19.8,18.9,21.0,15.1,18.0,18.4,21.3,13.5,16.8,18.6,20.7,14.1,17.3,19.6,21.6,21.3,21.3,21.3,21.7,20.0,21.1,20.4,21.5,18.2,20.0,19.1,20.3,17.0,20.2,18.6,20.4,14.9,18.5,18.6,19.9,15.1,18.8,20.1,21.9,22.6,22.9,22.5,21.6,21.6,21.8,21.6,21.5,20.3,21.4,20.6,21.4,18.8,21.0,20.3,21.0,15.6,18.6,20.0,20.8,15.1,19.3,19.6,22.0,22.3,22.3,22.5,21.6,21.2,21.9,21.6,21.6,20.4,21.3,20.8,21.1,18.0,20.3,19.5,20.6,14.6,18.0,19.2,20.6,15.9,19.1,20.6,21.7,23.0,22.9,22.0,21.5,21.3,22.1,21.6,21.5,20.8,21.8,20.6,21.3,19.1,21.0,19.9,19.6,16.6,18.7,18.9,19.6,14.9,19.1,19.6,24.4,24.1,23.3,23.8,22.8,23.1,22.8,22.3,21.5,21.8,22.5,22.0,21.3,21.2,22.5,22.5,21.2,19.2,21.2,21.5,20.9,18.8,21.6,22.1","receiveDate":"2024-11-16 09:28:56","remark":"粮温正常","sysDate":1747912482750,"tempAve":20.3,"tempIn":21,"tempMax":24.4,"tempMin":13.5,"tempOut":22.1,"weather":"无雨雪"},{"batchId":"202411031400","cable":"4-6-8","checkUser":"系统","companyId":"5303","depotData":{"$ref":"$[0][0].depotData"},"depotId":"91310114703439394M0010007002","humidityIn":63.5,"humidityOut":56.5,"listLays":[{"fz":1,"sumInNum":24,"sumInTemp":504.7000000000001,"sumNum":48,"sumOutNum":24,"sumOutTemp":510.7,"sumTemp":1015.4,"tempAve":21.2,"tempAveIn":21,"tempAveOut":21.3,"tempMax":24.5,"tempMin":19.6,"z":0},{"fz":2,"sumInNum":24,"sumInTemp":442.20000000000005,"sumNum":48,"sumOutNum":24,"sumOutTemp":466,"sumTemp":908.2,"tempAve":18.9,"tempAveIn":18.4,"tempAveOut":19.4,"tempMax":24,"tempMin":13.5,"z":1},{"fz":3,"sumInNum":24,"sumInTemp":485.50000000000006,"sumNum":48,"sumOutNum":24,"sumOutTemp":500.10000000000014,"sumTemp":985.6,"tempAve":20.5,"tempAveIn":20.2,"tempAveOut":20.8,"tempMax":23.3,"tempMin":16.8,"z":2},{"fz":4,"sumInNum":24,"sumInTemp":477.90000000000003,"sumNum":48,"sumOutNum":24,"sumOutTemp":502.60000000000014,"sumTemp":980.5,"tempAve":20.4,"tempAveIn":19.9,"tempAveOut":20.9,"tempMax":23.8,"tempMin":18.4,"z":3}],"listPoints":[{"fz":1,"temp":22,"x":7,"y":0,"z":0},{"fz":2,"temp":21.1,"x":7,"y":0,"z":1},{"fz":3,"temp":21.6,"x":7,"y":0,"z":2},{"fz":4,"temp":20.4,"x":7,"y":0,"z":3},{"fz":1,"temp":21.6,"x":7,"y":1,"z":0},{"fz":2,"temp":20.5,"x":7,"y":1,"z":1},{"fz":3,"temp":20.8,"x":7,"y":1,"z":2},{"fz":4,"temp":20,"x":7,"y":1,"z":3},{"fz":1,"temp":21.4,"x":7,"y":2,"z":0},{"fz":2,"temp":19.7,"x":7,"y":2,"z":1},{"fz":3,"temp":19.9,"x":7,"y":2,"z":2},{"fz":4,"temp":19,"x":7,"y":2,"z":3},{"fz":1,"temp":21,"x":7,"y":3,"z":0},{"fz":2,"temp":18.3,"x":7,"y":3,"z":1},{"fz":3,"temp":19.3,"x":7,"y":3,"z":2},{"fz":4,"temp":18.6,"x":7,"y":3,"z":3},{"fz":1,"temp":19.6,"x":7,"y":4,"z":0},{"fz":2,"temp":17.3,"x":7,"y":4,"z":1},{"fz":3,"temp":19,"x":7,"y":4,"z":2},{"fz":4,"temp":19,"x":7,"y":4,"z":3},{"fz":1,"temp":21.1,"x":7,"y":5,"z":0},{"fz":2,"temp":17,"x":7,"y":5,"z":1},{"fz":3,"temp":19.2,"x":7,"y":5,"z":2},{"fz":4,"temp":19.8,"x":7,"y":5,"z":3},{"fz":1,"temp":21.6,"x":6,"y":0,"z":0},{"fz":2,"temp":21.5,"x":6,"y":0,"z":1},{"fz":3,"temp":21.6,"x":6,"y":0,"z":2},{"fz":4,"temp":21.7,"x":6,"y":0,"z":3},{"fz":1,"temp":21.1,"x":6,"y":1,"z":0},{"fz":2,"temp":20.4,"x":6,"y":1,"z":1},{"fz":3,"temp":21,"x":6,"y":1,"z":2},{"fz":4,"temp":21,"x":6,"y":1,"z":3},{"fz":1,"temp":21.3,"x":6,"y":2,"z":0},{"fz":2,"temp":19.5,"x":6,"y":2,"z":1},{"fz":3,"temp":20.5,"x":6,"y":2,"z":2},{"fz":4,"temp":20.4,"x":6,"y":2,"z":3},{"fz":1,"temp":21.2,"x":6,"y":3,"z":0},{"fz":2,"temp":19,"x":6,"y":3,"z":1},{"fz":3,"temp":20.4,"x":6,"y":3,"z":2},{"fz":4,"temp":19.1,"x":6,"y":3,"z":3},{"fz":1,"temp":21.1,"x":6,"y":4,"z":0},{"fz":2,"temp":17.9,"x":6,"y":4,"z":1},{"fz":3,"temp":20,"x":6,"y":4,"z":2},{"fz":4,"temp":20,"x":6,"y":4,"z":3},{"fz":1,"temp":21,"x":6,"y":5,"z":0},{"fz":2,"temp":18,"x":6,"y":5,"z":1},{"fz":3,"temp":20,"x":6,"y":5,"z":2},{"fz":4,"temp":19.8,"x":6,"y":5,"z":3},{"fz":1,"temp":21.4,"x":5,"y":0,"z":0},{"fz":2,"temp":21,"x":5,"y":0,"z":1},{"fz":3,"temp":22,"x":5,"y":0,"z":2},{"fz":4,"temp":22,"x":5,"y":0,"z":3},{"fz":1,"temp":21.5,"x":5,"y":1,"z":0},{"fz":2,"temp":20.3,"x":5,"y":1,"z":1},{"fz":3,"temp":20.9,"x":5,"y":1,"z":2},{"fz":4,"temp":20.1,"x":5,"y":1,"z":3},{"fz":1,"temp":21.3,"x":5,"y":2,"z":0},{"fz":2,"temp":18.3,"x":5,"y":2,"z":1},{"fz":3,"temp":19.9,"x":5,"y":2,"z":2},{"fz":4,"temp":18.9,"x":5,"y":2,"z":3},{"fz":1,"temp":20.9,"x":5,"y":3,"z":0},{"fz":2,"temp":15.1,"x":5,"y":3,"z":1},{"fz":3,"temp":18.1,"x":5,"y":3,"z":2},{"fz":4,"temp":18.4,"x":5,"y":3,"z":3},{"fz":1,"temp":20.9,"x":5,"y":4,"z":0},{"fz":2,"temp":13.5,"x":5,"y":4,"z":1},{"fz":3,"temp":16.8,"x":5,"y":4,"z":2},{"fz":4,"temp":18.6,"x":5,"y":4,"z":3},{"fz":1,"temp":20.7,"x":5,"y":5,"z":0},{"fz":2,"temp":14,"x":5,"y":5,"z":1},{"fz":3,"temp":17.3,"x":5,"y":5,"z":2},{"fz":4,"temp":19.6,"x":5,"y":5,"z":3},{"fz":1,"temp":21.3,"x":4,"y":0,"z":0},{"fz":2,"temp":21.2,"x":4,"y":0,"z":1},{"fz":3,"temp":21.3,"x":4,"y":0,"z":2},{"fz":4,"temp":21.3,"x":4,"y":0,"z":3},{"fz":1,"temp":21.5,"x":4,"y":1,"z":0},{"fz":2,"temp":20,"x":4,"y":1,"z":1},{"fz":3,"temp":21.1,"x":4,"y":1,"z":2},{"fz":4,"temp":20.4,"x":4,"y":1,"z":3},{"fz":1,"temp":21.1,"x":4,"y":2,"z":0},{"fz":2,"temp":18.2,"x":4,"y":2,"z":1},{"fz":3,"temp":20,"x":4,"y":2,"z":2},{"fz":4,"temp":19.2,"x":4,"y":2,"z":3},{"fz":1,"temp":20.4,"x":4,"y":3,"z":0},{"fz":2,"temp":17,"x":4,"y":3,"z":1},{"fz":3,"temp":20.2,"x":4,"y":3,"z":2},{"fz":4,"temp":18.7,"x":4,"y":3,"z":3},{"fz":1,"temp":20.4,"x":4,"y":4,"z":0},{"fz":2,"temp":14.9,"x":4,"y":4,"z":1},{"fz":3,"temp":18.6,"x":4,"y":4,"z":2},{"fz":4,"temp":18.6,"x":4,"y":4,"z":3},{"fz":1,"temp":19.9,"x":4,"y":5,"z":0},{"fz":2,"temp":15.1,"x":4,"y":5,"z":1},{"fz":3,"temp":18.8,"x":4,"y":5,"z":2},{"fz":4,"temp":20.1,"x":4,"y":5,"z":3},{"fz":1,"temp":21.8,"x":3,"y":0,"z":0},{"fz":2,"temp":22.6,"x":3,"y":0,"z":1},{"fz":3,"temp":22.9,"x":3,"y":0,"z":2},{"fz":4,"temp":22.5,"x":3,"y":0,"z":3},{"fz":1,"temp":21.2,"x":3,"y":1,"z":0},{"fz":2,"temp":21.6,"x":3,"y":1,"z":1},{"fz":3,"temp":21.8,"x":3,"y":1,"z":2},{"fz":4,"temp":21.6,"x":3,"y":1,"z":3},{"fz":1,"temp":21.3,"x":3,"y":2,"z":0},{"fz":2,"temp":20.3,"x":3,"y":2,"z":1},{"fz":3,"temp":21.4,"x":3,"y":2,"z":2},{"fz":4,"temp":20.6,"x":3,"y":2,"z":3},{"fz":1,"temp":21.1,"x":3,"y":3,"z":0},{"fz":2,"temp":18.8,"x":3,"y":3,"z":1},{"fz":3,"temp":21,"x":3,"y":3,"z":2},{"fz":4,"temp":20.3,"x":3,"y":3,"z":3},{"fz":1,"temp":20.6,"x":3,"y":4,"z":0},{"fz":2,"temp":15.5,"x":3,"y":4,"z":1},{"fz":3,"temp":18.6,"x":3,"y":4,"z":2},{"fz":4,"temp":20,"x":3,"y":4,"z":3},{"fz":1,"temp":20.8,"x":3,"y":5,"z":0},{"fz":2,"temp":15,"x":3,"y":5,"z":1},{"fz":3,"temp":19.3,"x":3,"y":5,"z":2},{"fz":4,"temp":19.6,"x":3,"y":5,"z":3},{"fz":1,"temp":22,"x":2,"y":0,"z":0},{"fz":2,"temp":22.3,"x":2,"y":0,"z":1},{"fz":3,"temp":22.3,"x":2,"y":0,"z":2},{"fz":4,"temp":22.6,"x":2,"y":0,"z":3},{"fz":1,"temp":21.4,"x":2,"y":1,"z":0},{"fz":2,"temp":21.2,"x":2,"y":1,"z":1},{"fz":3,"temp":21.9,"x":2,"y":1,"z":2},{"fz":4,"temp":21.6,"x":2,"y":1,"z":3},{"fz":1,"temp":21.3,"x":2,"y":2,"z":0},{"fz":2,"temp":20.4,"x":2,"y":2,"z":1},{"fz":3,"temp":21.3,"x":2,"y":2,"z":2},{"fz":4,"temp":20.8,"x":2,"y":2,"z":3},{"fz":1,"temp":21,"x":2,"y":3,"z":0},{"fz":2,"temp":17.9,"x":2,"y":3,"z":1},{"fz":3,"temp":20.3,"x":2,"y":3,"z":2},{"fz":4,"temp":19.5,"x":2,"y":3,"z":3},{"fz":1,"temp":20.6,"x":2,"y":4,"z":0},{"fz":2,"temp":14.6,"x":2,"y":4,"z":1},{"fz":3,"temp":18.1,"x":2,"y":4,"z":2},{"fz":4,"temp":19.1,"x":2,"y":4,"z":3},{"fz":1,"temp":20.6,"x":2,"y":5,"z":0},{"fz":2,"temp":15.8,"x":2,"y":5,"z":1},{"fz":3,"temp":19.1,"x":2,"y":5,"z":2},{"fz":4,"temp":20.6,"x":2,"y":5,"z":3},{"fz":1,"temp":21.5,"x":1,"y":0,"z":0},{"fz":2,"temp":22.9,"x":1,"y":0,"z":1},{"fz":3,"temp":22.9,"x":1,"y":0,"z":2},{"fz":4,"temp":22,"x":1,"y":0,"z":3},{"fz":1,"temp":21.2,"x":1,"y":1,"z":0},{"fz":2,"temp":21.3,"x":1,"y":1,"z":1},{"fz":3,"temp":22.1,"x":1,"y":1,"z":2},{"fz":4,"temp":21.6,"x":1,"y":1,"z":3},{"fz":1,"temp":21.5,"x":1,"y":2,"z":0},{"fz":2,"temp":20.8,"x":1,"y":2,"z":1},{"fz":3,"temp":21.8,"x":1,"y":2,"z":2},{"fz":4,"temp":20.6,"x":1,"y":2,"z":3},{"fz":1,"temp":21.1,"x":1,"y":3,"z":0},{"fz":2,"temp":19.1,"x":1,"y":3,"z":1},{"fz":3,"temp":21,"x":1,"y":3,"z":2},{"fz":4,"temp":19.9,"x":1,"y":3,"z":3},{"fz":1,"temp":19.7,"x":1,"y":4,"z":0},{"fz":2,"temp":16.6,"x":1,"y":4,"z":1},{"fz":3,"temp":18.7,"x":1,"y":4,"z":2},{"fz":4,"temp":18.9,"x":1,"y":4,"z":3},{"fz":1,"temp":19.6,"x":1,"y":5,"z":0},{"fz":2,"temp":14.9,"x":1,"y":5,"z":1},{"fz":3,"temp":19.1,"x":1,"y":5,"z":2},{"fz":4,"temp":19.6,"x":1,"y":5,"z":3},{"fz":1,"temp":24.5,"x":0,"y":0,"z":0},{"fz":2,"temp":24,"x":0,"y":0,"z":1},{"fz":3,"temp":23.3,"x":0,"y":0,"z":2},{"fz":4,"temp":23.8,"x":0,"y":0,"z":3},{"fz":1,"temp":22.9,"x":0,"y":1,"z":0},{"fz":2,"temp":23,"x":0,"y":1,"z":1},{"fz":3,"temp":22.8,"x":0,"y":1,"z":2},{"fz":4,"temp":22.4,"x":0,"y":1,"z":3},{"fz":1,"temp":21.5,"x":0,"y":2,"z":0},{"fz":2,"temp":21.8,"x":0,"y":2,"z":1},{"fz":3,"temp":22.5,"x":0,"y":2,"z":2},{"fz":4,"temp":22.1,"x":0,"y":2,"z":3},{"fz":1,"temp":20.9,"x":0,"y":3,"z":0},{"fz":2,"temp":21.1,"x":0,"y":3,"z":1},{"fz":3,"temp":22.5,"x":0,"y":3,"z":2},{"fz":4,"temp":22.5,"x":0,"y":3,"z":3},{"fz":1,"temp":21.2,"x":0,"y":4,"z":0},{"fz":2,"temp":19.1,"x":0,"y":4,"z":1},{"fz":3,"temp":21.1,"x":0,"y":4,"z":2},{"fz":4,"temp":21.5,"x":0,"y":4,"z":3},{"fz":1,"temp":20.8,"x":0,"y":5,"z":0},{"fz":2,"temp":18.8,"x":0,"y":5,"z":1},{"fz":3,"temp":21.5,"x":0,"y":5,"z":2},{"fz":4,"temp":22.1,"x":0,"y":5,"z":3}],"listRows":[{"sumNum":32,"sumTemp":706.9,"tempAve":22.1,"tempMax":24.5,"tempMin":20.4,"y":0},{"sumNum":32,"sumTemp":681.8,"tempAve":21.3,"tempMax":23,"tempMin":20,"y":1},{"sumNum":32,"sumTemp":658.6,"tempAve":20.6,"tempMax":22.5,"tempMin":18.2,"y":2},{"sumNum":32,"sumTemp":633.7,"tempAve":19.8,"tempMax":22.5,"tempMin":15.1,"y":3},{"sumNum":32,"sumTemp":600.1,"tempAve":18.8,"tempMax":21.5,"tempMin":13.5,"y":4},{"sumNum":32,"sumTemp":608.6,"tempAve":19,"tempMax":22.1,"tempMin":14,"y":5}],"mquality":{"$ref":"$[0][0].mquality"},"points":"22.0,21.1,21.6,20.4,21.6,20.5,20.8,20.0,21.4,19.7,19.9,19.0,21.0,18.3,19.3,18.6,19.6,17.3,19.0,19.0,21.1,17.0,19.2,19.8,21.6,21.5,21.6,21.7,21.1,20.4,21.0,21.0,21.3,19.5,20.5,20.4,21.2,19.0,20.4,19.1,21.1,17.9,20.0,20.0,21.0,18.0,20.0,19.8,21.4,21.0,22.0,22.0,21.5,20.3,20.9,20.1,21.3,18.3,19.9,18.9,20.9,15.1,18.1,18.4,20.9,13.5,16.8,18.6,20.7,14.0,17.3,19.6,21.3,21.2,21.3,21.3,21.5,20.0,21.1,20.4,21.1,18.2,20.0,19.2,20.4,17.0,20.2,18.7,20.4,14.9,18.6,18.6,19.9,15.1,18.8,20.1,21.8,22.6,22.9,22.5,21.2,21.6,21.8,21.6,21.3,20.3,21.4,20.6,21.1,18.8,21.0,20.3,20.6,15.5,18.6,20.0,20.8,15.0,19.3,19.6,22.0,22.3,22.3,22.6,21.4,21.2,21.9,21.6,21.3,20.4,21.3,20.8,21.0,17.9,20.3,19.5,20.6,14.6,18.1,19.1,20.6,15.8,19.1,20.6,21.5,22.9,22.9,22.0,21.2,21.3,22.1,21.6,21.5,20.8,21.8,20.6,21.1,19.1,21.0,19.9,19.7,16.6,18.7,18.9,19.6,14.9,19.1,19.6,24.5,24.0,23.3,23.8,22.9,23.0,22.8,22.4,21.5,21.8,22.5,22.1,20.9,21.1,22.5,22.5,21.2,19.1,21.1,21.5,20.8,18.8,21.5,22.1","receiveDate":"2024-11-16 09:32:56","remark":"粮温正常","sysDate":1747912482753,"tempAve":20.3,"tempIn":21,"tempMax":24.5,"tempMin":13.5,"tempOut":23.4,"weather":"无雨雪"},{"batchId":"202411021400","cable":"4-6-8","checkUser":"系统","companyId":"5303","depotData":{"$ref":"$[0][0].depotData"},"depotId":"91310114703439394M0010007002","humidityIn":64.5,"humidityOut":69.8,"listLays":[{"fz":1,"sumInNum":24,"sumInTemp":505.6000000000001,"sumNum":48,"sumOutNum":24,"sumOutTemp":512.2,"sumTemp":1017.8,"tempAve":21.2,"tempAveIn":21.1,"tempAveOut":21.3,"tempMax":24.5,"tempMin":19.6,"z":0},{"fz":2,"sumInNum":24,"sumInTemp":441.8,"sumNum":48,"sumOutNum":24,"sumOutTemp":465.3,"sumTemp":907.1,"tempAve":18.9,"tempAveIn":18.4,"tempAveOut":19.4,"tempMax":24,"tempMin":13.3,"z":1},{"fz":3,"sumInNum":24,"sumInTemp":485.8,"sumNum":48,"sumOutNum":24,"sumOutTemp":500.20000000000005,"sumTemp":986,"tempAve":20.5,"tempAveIn":20.2,"tempAveOut":20.8,"tempMax":23.2,"tempMin":16.9,"z":2},{"fz":4,"sumInNum":24,"sumInTemp":478.20000000000005,"sumNum":48,"sumOutNum":24,"sumOutTemp":503.10000000000014,"sumTemp":981.3,"tempAve":20.4,"tempAveIn":19.9,"tempAveOut":21,"tempMax":23.8,"tempMin":18.4,"z":3}],"listPoints":[{"fz":1,"temp":22,"x":7,"y":0,"z":0},{"fz":2,"temp":21.1,"x":7,"y":0,"z":1},{"fz":3,"temp":21.6,"x":7,"y":0,"z":2},{"fz":4,"temp":20.5,"x":7,"y":0,"z":3},{"fz":1,"temp":21.8,"x":7,"y":1,"z":0},{"fz":2,"temp":20.5,"x":7,"y":1,"z":1},{"fz":3,"temp":20.8,"x":7,"y":1,"z":2},{"fz":4,"temp":20,"x":7,"y":1,"z":3},{"fz":1,"temp":21.5,"x":7,"y":2,"z":0},{"fz":2,"temp":19.7,"x":7,"y":2,"z":1},{"fz":3,"temp":19.9,"x":7,"y":2,"z":2},{"fz":4,"temp":19,"x":7,"y":2,"z":3},{"fz":1,"temp":21.1,"x":7,"y":3,"z":0},{"fz":2,"temp":18.3,"x":7,"y":3,"z":1},{"fz":3,"temp":19.3,"x":7,"y":3,"z":2},{"fz":4,"temp":18.6,"x":7,"y":3,"z":3},{"fz":1,"temp":19.6,"x":7,"y":4,"z":0},{"fz":2,"temp":17.3,"x":7,"y":4,"z":1},{"fz":3,"temp":19,"x":7,"y":4,"z":2},{"fz":4,"temp":19.1,"x":7,"y":4,"z":3},{"fz":1,"temp":21.1,"x":7,"y":5,"z":0},{"fz":2,"temp":16.9,"x":7,"y":5,"z":1},{"fz":3,"temp":19.2,"x":7,"y":5,"z":2},{"fz":4,"temp":19.8,"x":7,"y":5,"z":3},{"fz":1,"temp":21.8,"x":6,"y":0,"z":0},{"fz":2,"temp":21.5,"x":6,"y":0,"z":1},{"fz":3,"temp":21.6,"x":6,"y":0,"z":2},{"fz":4,"temp":21.7,"x":6,"y":0,"z":3},{"fz":1,"temp":21.2,"x":6,"y":1,"z":0},{"fz":2,"temp":20.3,"x":6,"y":1,"z":1},{"fz":3,"temp":21,"x":6,"y":1,"z":2},{"fz":4,"temp":21,"x":6,"y":1,"z":3},{"fz":1,"temp":21.3,"x":6,"y":2,"z":0},{"fz":2,"temp":19.5,"x":6,"y":2,"z":1},{"fz":3,"temp":20.5,"x":6,"y":2,"z":2},{"fz":4,"temp":20.4,"x":6,"y":2,"z":3},{"fz":1,"temp":21.3,"x":6,"y":3,"z":0},{"fz":2,"temp":19,"x":6,"y":3,"z":1},{"fz":3,"temp":20.4,"x":6,"y":3,"z":2},{"fz":4,"temp":19.1,"x":6,"y":3,"z":3},{"fz":1,"temp":21.2,"x":6,"y":4,"z":0},{"fz":2,"temp":17.9,"x":6,"y":4,"z":1},{"fz":3,"temp":20,"x":6,"y":4,"z":2},{"fz":4,"temp":20.1,"x":6,"y":4,"z":3},{"fz":1,"temp":21,"x":6,"y":5,"z":0},{"fz":2,"temp":18,"x":6,"y":5,"z":1},{"fz":3,"temp":20,"x":6,"y":5,"z":2},{"fz":4,"temp":19.8,"x":6,"y":5,"z":3},{"fz":1,"temp":21.4,"x":5,"y":0,"z":0},{"fz":2,"temp":21,"x":5,"y":0,"z":1},{"fz":3,"temp":22,"x":5,"y":0,"z":2},{"fz":4,"temp":22,"x":5,"y":0,"z":3},{"fz":1,"temp":21.5,"x":5,"y":1,"z":0},{"fz":2,"temp":20.3,"x":5,"y":1,"z":1},{"fz":3,"temp":20.9,"x":5,"y":1,"z":2},{"fz":4,"temp":20.1,"x":5,"y":1,"z":3},{"fz":1,"temp":21.3,"x":5,"y":2,"z":0},{"fz":2,"temp":18.3,"x":5,"y":2,"z":1},{"fz":3,"temp":19.9,"x":5,"y":2,"z":2},{"fz":4,"temp":18.9,"x":5,"y":2,"z":3},{"fz":1,"temp":21,"x":5,"y":3,"z":0},{"fz":2,"temp":15.1,"x":5,"y":3,"z":1},{"fz":3,"temp":18.1,"x":5,"y":3,"z":2},{"fz":4,"temp":18.4,"x":5,"y":3,"z":3},{"fz":1,"temp":20.8,"x":5,"y":4,"z":0},{"fz":2,"temp":13.3,"x":5,"y":4,"z":1},{"fz":3,"temp":16.9,"x":5,"y":4,"z":2},{"fz":4,"temp":18.6,"x":5,"y":4,"z":3},{"fz":1,"temp":20.8,"x":5,"y":5,"z":0},{"fz":2,"temp":14,"x":5,"y":5,"z":1},{"fz":3,"temp":17.4,"x":5,"y":5,"z":2},{"fz":4,"temp":19.6,"x":5,"y":5,"z":3},{"fz":1,"temp":21.1,"x":4,"y":0,"z":0},{"fz":2,"temp":21.2,"x":4,"y":0,"z":1},{"fz":3,"temp":21.3,"x":4,"y":0,"z":2},{"fz":4,"temp":21.4,"x":4,"y":0,"z":3},{"fz":1,"temp":21.6,"x":4,"y":1,"z":0},{"fz":2,"temp":20,"x":4,"y":1,"z":1},{"fz":3,"temp":21.1,"x":4,"y":1,"z":2},{"fz":4,"temp":20.4,"x":4,"y":1,"z":3},{"fz":1,"temp":21,"x":4,"y":2,"z":0},{"fz":2,"temp":18.2,"x":4,"y":2,"z":1},{"fz":3,"temp":20,"x":4,"y":2,"z":2},{"fz":4,"temp":19.2,"x":4,"y":2,"z":3},{"fz":1,"temp":20.5,"x":4,"y":3,"z":0},{"fz":2,"temp":17,"x":4,"y":3,"z":1},{"fz":3,"temp":20.3,"x":4,"y":3,"z":2},{"fz":4,"temp":18.7,"x":4,"y":3,"z":3},{"fz":1,"temp":20.5,"x":4,"y":4,"z":0},{"fz":2,"temp":14.9,"x":4,"y":4,"z":1},{"fz":3,"temp":18.6,"x":4,"y":4,"z":2},{"fz":4,"temp":18.6,"x":4,"y":4,"z":3},{"fz":1,"temp":19.9,"x":4,"y":5,"z":0},{"fz":2,"temp":15,"x":4,"y":5,"z":1},{"fz":3,"temp":18.9,"x":4,"y":5,"z":2},{"fz":4,"temp":20.1,"x":4,"y":5,"z":3},{"fz":1,"temp":22,"x":3,"y":0,"z":0},{"fz":2,"temp":22.6,"x":3,"y":0,"z":1},{"fz":3,"temp":22.9,"x":3,"y":0,"z":2},{"fz":4,"temp":22.5,"x":3,"y":0,"z":3},{"fz":1,"temp":21.1,"x":3,"y":1,"z":0},{"fz":2,"temp":21.6,"x":3,"y":1,"z":1},{"fz":3,"temp":21.8,"x":3,"y":1,"z":2},{"fz":4,"temp":21.6,"x":3,"y":1,"z":3},{"fz":1,"temp":21.4,"x":3,"y":2,"z":0},{"fz":2,"temp":20.3,"x":3,"y":2,"z":1},{"fz":3,"temp":21.4,"x":3,"y":2,"z":2},{"fz":4,"temp":20.6,"x":3,"y":2,"z":3},{"fz":1,"temp":21.2,"x":3,"y":3,"z":0},{"fz":2,"temp":18.8,"x":3,"y":3,"z":1},{"fz":3,"temp":21,"x":3,"y":3,"z":2},{"fz":4,"temp":20.3,"x":3,"y":3,"z":3},{"fz":1,"temp":20.6,"x":3,"y":4,"z":0},{"fz":2,"temp":15.5,"x":3,"y":4,"z":1},{"fz":3,"temp":18.7,"x":3,"y":4,"z":2},{"fz":4,"temp":20,"x":3,"y":4,"z":3},{"fz":1,"temp":20.9,"x":3,"y":5,"z":0},{"fz":2,"temp":15,"x":3,"y":5,"z":1},{"fz":3,"temp":19.4,"x":3,"y":5,"z":2},{"fz":4,"temp":19.6,"x":3,"y":5,"z":3},{"fz":1,"temp":22.1,"x":2,"y":0,"z":0},{"fz":2,"temp":22.2,"x":2,"y":0,"z":1},{"fz":3,"temp":22.3,"x":2,"y":0,"z":2},{"fz":4,"temp":22.6,"x":2,"y":0,"z":3},{"fz":1,"temp":21.4,"x":2,"y":1,"z":0},{"fz":2,"temp":21.2,"x":2,"y":1,"z":1},{"fz":3,"temp":21.9,"x":2,"y":1,"z":2},{"fz":4,"temp":21.6,"x":2,"y":1,"z":3},{"fz":1,"temp":21.3,"x":2,"y":2,"z":0},{"fz":2,"temp":20.4,"x":2,"y":2,"z":1},{"fz":3,"temp":21.3,"x":2,"y":2,"z":2},{"fz":4,"temp":20.8,"x":2,"y":2,"z":3},{"fz":1,"temp":21.1,"x":2,"y":3,"z":0},{"fz":2,"temp":17.9,"x":2,"y":3,"z":1},{"fz":3,"temp":20.3,"x":2,"y":3,"z":2},{"fz":4,"temp":19.5,"x":2,"y":3,"z":3},{"fz":1,"temp":20.8,"x":2,"y":4,"z":0},{"fz":2,"temp":14.5,"x":2,"y":4,"z":1},{"fz":3,"temp":18.1,"x":2,"y":4,"z":2},{"fz":4,"temp":19.2,"x":2,"y":4,"z":3},{"fz":1,"temp":20.7,"x":2,"y":5,"z":0},{"fz":2,"temp":15.7,"x":2,"y":5,"z":1},{"fz":3,"temp":19.1,"x":2,"y":5,"z":2},{"fz":4,"temp":20.6,"x":2,"y":5,"z":3},{"fz":1,"temp":21.6,"x":1,"y":0,"z":0},{"fz":2,"temp":22.8,"x":1,"y":0,"z":1},{"fz":3,"temp":22.9,"x":1,"y":0,"z":2},{"fz":4,"temp":22.1,"x":1,"y":0,"z":3},{"fz":1,"temp":21.1,"x":1,"y":1,"z":0},{"fz":2,"temp":21.3,"x":1,"y":1,"z":1},{"fz":3,"temp":22.1,"x":1,"y":1,"z":2},{"fz":4,"temp":21.6,"x":1,"y":1,"z":3},{"fz":1,"temp":21.6,"x":1,"y":2,"z":0},{"fz":2,"temp":20.8,"x":1,"y":2,"z":1},{"fz":3,"temp":21.8,"x":1,"y":2,"z":2},{"fz":4,"temp":20.6,"x":1,"y":2,"z":3},{"fz":1,"temp":21.1,"x":1,"y":3,"z":0},{"fz":2,"temp":19.1,"x":1,"y":3,"z":1},{"fz":3,"temp":21,"x":1,"y":3,"z":2},{"fz":4,"temp":20,"x":1,"y":3,"z":3},{"fz":1,"temp":19.7,"x":1,"y":4,"z":0},{"fz":2,"temp":16.6,"x":1,"y":4,"z":1},{"fz":3,"temp":18.7,"x":1,"y":4,"z":2},{"fz":4,"temp":18.9,"x":1,"y":4,"z":3},{"fz":1,"temp":19.6,"x":1,"y":5,"z":0},{"fz":2,"temp":14.8,"x":1,"y":5,"z":1},{"fz":3,"temp":19.1,"x":1,"y":5,"z":2},{"fz":4,"temp":19.6,"x":1,"y":5,"z":3},{"fz":1,"temp":24.5,"x":0,"y":0,"z":0},{"fz":2,"temp":24,"x":0,"y":0,"z":1},{"fz":3,"temp":23.2,"x":0,"y":0,"z":2},{"fz":4,"temp":23.8,"x":0,"y":0,"z":3},{"fz":1,"temp":23,"x":0,"y":1,"z":0},{"fz":2,"temp":23,"x":0,"y":1,"z":1},{"fz":3,"temp":22.8,"x":0,"y":1,"z":2},{"fz":4,"temp":22.4,"x":0,"y":1,"z":3},{"fz":1,"temp":21.6,"x":0,"y":2,"z":0},{"fz":2,"temp":21.8,"x":0,"y":2,"z":1},{"fz":3,"temp":22.5,"x":0,"y":2,"z":2},{"fz":4,"temp":22.1,"x":0,"y":2,"z":3},{"fz":1,"temp":20.8,"x":0,"y":3,"z":0},{"fz":2,"temp":21.1,"x":0,"y":3,"z":1},{"fz":3,"temp":22.4,"x":0,"y":3,"z":2},{"fz":4,"temp":22.5,"x":0,"y":3,"z":3},{"fz":1,"temp":21.3,"x":0,"y":4,"z":0},{"fz":2,"temp":19.1,"x":0,"y":4,"z":1},{"fz":3,"temp":21.1,"x":0,"y":4,"z":2},{"fz":4,"temp":21.5,"x":0,"y":4,"z":3},{"fz":1,"temp":21,"x":0,"y":5,"z":0},{"fz":2,"temp":18.7,"x":0,"y":5,"z":1},{"fz":3,"temp":21.5,"x":0,"y":5,"z":2},{"fz":4,"temp":22.2,"x":0,"y":5,"z":3}],"listRows":[{"sumNum":32,"sumTemp":707.3,"tempAve":22.1,"tempMax":24.5,"tempMin":20.5,"y":0},{"sumNum":32,"sumTemp":682,"tempAve":21.3,"tempMax":23,"tempMin":20,"y":1},{"sumNum":32,"sumTemp":658.9,"tempAve":20.6,"tempMax":22.5,"tempMin":18.2,"y":2},{"sumNum":32,"sumTemp":634.3,"tempAve":19.8,"tempMax":22.5,"tempMin":15.1,"y":3},{"sumNum":32,"sumTemp":600.7,"tempAve":18.8,"tempMax":21.5,"tempMin":13.3,"y":4},{"sumNum":32,"sumTemp":609,"tempAve":19,"tempMax":22.2,"tempMin":14,"y":5}],"mquality":{"$ref":"$[0][0].mquality"},"points":"22.0,21.1,21.6,20.5,21.8,20.5,20.8,20.0,21.5,19.7,19.9,19.0,21.1,18.3,19.3,18.6,19.6,17.3,19.0,19.1,21.1,16.9,19.2,19.8,21.8,21.5,21.6,21.7,21.2,20.3,21.0,21.0,21.3,19.5,20.5,20.4,21.3,19.0,20.4,19.1,21.2,17.9,20.0,20.1,21.0,18.0,20.0,19.8,21.4,21.0,22.0,22.0,21.5,20.3,20.9,20.1,21.3,18.3,19.9,18.9,21.0,15.1,18.1,18.4,20.8,13.3,16.9,18.6,20.8,14.0,17.4,19.6,21.1,21.2,21.3,21.4,21.6,20.0,21.1,20.4,21.0,18.2,20.0,19.2,20.5,17.0,20.3,18.7,20.5,14.9,18.6,18.6,19.9,15.0,18.9,20.1,22.0,22.6,22.9,22.5,21.1,21.6,21.8,21.6,21.4,20.3,21.4,20.6,21.2,18.8,21.0,20.3,20.6,15.5,18.7,20.0,20.9,15.0,19.4,19.6,22.1,22.2,22.3,22.6,21.4,21.2,21.9,21.6,21.3,20.4,21.3,20.8,21.1,17.9,20.3,19.5,20.8,14.5,18.1,19.2,20.7,15.7,19.1,20.6,21.6,22.8,22.9,22.1,21.1,21.3,22.1,21.6,21.6,20.8,21.8,20.6,21.1,19.1,21.0,20.0,19.7,16.6,18.7,18.9,19.6,14.8,19.1,19.6,24.5,24.0,23.2,23.8,23.0,23.0,22.8,22.4,21.6,21.8,22.5,22.1,20.8,21.1,22.4,22.5,21.3,19.1,21.1,21.5,21.0,18.7,21.5,22.2","receiveDate":"2024-11-16 09:53:56","remark":"粮温正常","sysDate":1747912482755,"tempAve":20.3,"tempIn":21,"tempMax":24.5,"tempMin":13.3,"tempOut":21.4,"weather":"无雨雪"},{"batchId":"202411011400","cable":"4-6-8","checkUser":"系统","companyId":"5303","depotData":{"$ref":"$[0][0].depotData"},"depotId":"91310114703439394M0010007002","humidityIn":65.5,"humidityOut":99.9,"listLays":[{"fz":1,"sumInNum":24,"sumInTemp":513.1000000000001,"sumNum":48,"sumOutNum":24,"sumOutTemp":517.3000000000001,"sumTemp":1030.4,"tempAve":21.5,"tempAveIn":21.4,"tempAveOut":21.6,"tempMax":24.5,"tempMin":19.5,"z":0},{"fz":2,"sumInNum":24,"sumInTemp":441.30000000000007,"sumNum":48,"sumOutNum":24,"sumOutTemp":464.40000000000003,"sumTemp":905.7,"tempAve":18.9,"tempAveIn":18.4,"tempAveOut":19.4,"tempMax":23.9,"tempMin":13.3,"z":1},{"fz":3,"sumInNum":24,"sumInTemp":486.00000000000006,"sumNum":48,"sumOutNum":24,"sumOutTemp":499.9,"sumTemp":985.9,"tempAve":20.5,"tempAveIn":20.3,"tempAveOut":20.8,"tempMax":23.2,"tempMin":16.9,"z":2},{"fz":4,"sumInNum":24,"sumInTemp":479.09999999999997,"sumNum":48,"sumOutNum":24,"sumOutTemp":503.6000000000001,"sumTemp":982.7,"tempAve":20.5,"tempAveIn":20,"tempAveOut":21,"tempMax":23.9,"tempMin":18.4,"z":3}],"listPoints":[{"fz":1,"temp":22,"x":7,"y":0,"z":0},{"fz":2,"temp":21,"x":7,"y":0,"z":1},{"fz":3,"temp":21.6,"x":7,"y":0,"z":2},{"fz":4,"temp":20.5,"x":7,"y":0,"z":3},{"fz":1,"temp":22,"x":7,"y":1,"z":0},{"fz":2,"temp":20.5,"x":7,"y":1,"z":1},{"fz":3,"temp":20.8,"x":7,"y":1,"z":2},{"fz":4,"temp":20,"x":7,"y":1,"z":3},{"fz":1,"temp":21.8,"x":7,"y":2,"z":0},{"fz":2,"temp":19.7,"x":7,"y":2,"z":1},{"fz":3,"temp":19.9,"x":7,"y":2,"z":2},{"fz":4,"temp":19.1,"x":7,"y":2,"z":3},{"fz":1,"temp":21.3,"x":7,"y":3,"z":0},{"fz":2,"temp":18.3,"x":7,"y":3,"z":1},{"fz":3,"temp":19.3,"x":7,"y":3,"z":2},{"fz":4,"temp":18.6,"x":7,"y":3,"z":3},{"fz":1,"temp":19.6,"x":7,"y":4,"z":0},{"fz":2,"temp":17.3,"x":7,"y":4,"z":1},{"fz":3,"temp":18.9,"x":7,"y":4,"z":2},{"fz":4,"temp":19,"x":7,"y":4,"z":3},{"fz":1,"temp":21.6,"x":7,"y":5,"z":0},{"fz":2,"temp":16.8,"x":7,"y":5,"z":1},{"fz":3,"temp":19.2,"x":7,"y":5,"z":2},{"fz":4,"temp":19.8,"x":7,"y":5,"z":3},{"fz":1,"temp":22,"x":6,"y":0,"z":0},{"fz":2,"temp":21.4,"x":6,"y":0,"z":1},{"fz":3,"temp":21.6,"x":6,"y":0,"z":2},{"fz":4,"temp":21.8,"x":6,"y":0,"z":3},{"fz":1,"temp":21.2,"x":6,"y":1,"z":0},{"fz":2,"temp":20.3,"x":6,"y":1,"z":1},{"fz":3,"temp":21,"x":6,"y":1,"z":2},{"fz":4,"temp":21,"x":6,"y":1,"z":3},{"fz":1,"temp":21.7,"x":6,"y":2,"z":0},{"fz":2,"temp":19.5,"x":6,"y":2,"z":1},{"fz":3,"temp":20.5,"x":6,"y":2,"z":2},{"fz":4,"temp":20.5,"x":6,"y":2,"z":3},{"fz":1,"temp":21.5,"x":6,"y":3,"z":0},{"fz":2,"temp":19,"x":6,"y":3,"z":1},{"fz":3,"temp":20.4,"x":6,"y":3,"z":2},{"fz":4,"temp":19.2,"x":6,"y":3,"z":3},{"fz":1,"temp":21.5,"x":6,"y":4,"z":0},{"fz":2,"temp":17.8,"x":6,"y":4,"z":1},{"fz":3,"temp":20.1,"x":6,"y":4,"z":2},{"fz":4,"temp":20.1,"x":6,"y":4,"z":3},{"fz":1,"temp":21.3,"x":6,"y":5,"z":0},{"fz":2,"temp":18,"x":6,"y":5,"z":1},{"fz":3,"temp":20,"x":6,"y":5,"z":2},{"fz":4,"temp":19.8,"x":6,"y":5,"z":3},{"fz":1,"temp":21.8,"x":5,"y":0,"z":0},{"fz":2,"temp":20.9,"x":5,"y":0,"z":1},{"fz":3,"temp":22,"x":5,"y":0,"z":2},{"fz":4,"temp":22,"x":5,"y":0,"z":3},{"fz":1,"temp":21.9,"x":5,"y":1,"z":0},{"fz":2,"temp":20.3,"x":5,"y":1,"z":1},{"fz":3,"temp":20.9,"x":5,"y":1,"z":2},{"fz":4,"temp":20.1,"x":5,"y":1,"z":3},{"fz":1,"temp":21.7,"x":5,"y":2,"z":0},{"fz":2,"temp":18.3,"x":5,"y":2,"z":1},{"fz":3,"temp":19.9,"x":5,"y":2,"z":2},{"fz":4,"temp":19,"x":5,"y":2,"z":3},{"fz":1,"temp":21.2,"x":5,"y":3,"z":0},{"fz":2,"temp":15,"x":5,"y":3,"z":1},{"fz":3,"temp":18.1,"x":5,"y":3,"z":2},{"fz":4,"temp":18.4,"x":5,"y":3,"z":3},{"fz":1,"temp":21.3,"x":5,"y":4,"z":0},{"fz":2,"temp":13.3,"x":5,"y":4,"z":1},{"fz":3,"temp":16.9,"x":5,"y":4,"z":2},{"fz":4,"temp":18.6,"x":5,"y":4,"z":3},{"fz":1,"temp":21,"x":5,"y":5,"z":0},{"fz":2,"temp":13.9,"x":5,"y":5,"z":1},{"fz":3,"temp":17.4,"x":5,"y":5,"z":2},{"fz":4,"temp":19.6,"x":5,"y":5,"z":3},{"fz":1,"temp":21.6,"x":4,"y":0,"z":0},{"fz":2,"temp":21.2,"x":4,"y":0,"z":1},{"fz":3,"temp":21.3,"x":4,"y":0,"z":2},{"fz":4,"temp":21.4,"x":4,"y":0,"z":3},{"fz":1,"temp":22,"x":4,"y":1,"z":0},{"fz":2,"temp":20,"x":4,"y":1,"z":1},{"fz":3,"temp":21.1,"x":4,"y":1,"z":2},{"fz":4,"temp":20.5,"x":4,"y":1,"z":3},{"fz":1,"temp":21.5,"x":4,"y":2,"z":0},{"fz":2,"temp":18.1,"x":4,"y":2,"z":1},{"fz":3,"temp":20,"x":4,"y":2,"z":2},{"fz":4,"temp":19.2,"x":4,"y":2,"z":3},{"fz":1,"temp":20.5,"x":4,"y":3,"z":0},{"fz":2,"temp":17,"x":4,"y":3,"z":1},{"fz":3,"temp":20.3,"x":4,"y":3,"z":2},{"fz":4,"temp":18.7,"x":4,"y":3,"z":3},{"fz":1,"temp":20.5,"x":4,"y":4,"z":0},{"fz":2,"temp":14.9,"x":4,"y":4,"z":1},{"fz":3,"temp":18.6,"x":4,"y":4,"z":2},{"fz":4,"temp":18.7,"x":4,"y":4,"z":3},{"fz":1,"temp":19.9,"x":4,"y":5,"z":0},{"fz":2,"temp":15,"x":4,"y":5,"z":1},{"fz":3,"temp":18.9,"x":4,"y":5,"z":2},{"fz":4,"temp":20.1,"x":4,"y":5,"z":3},{"fz":1,"temp":22.2,"x":3,"y":0,"z":0},{"fz":2,"temp":22.6,"x":3,"y":0,"z":1},{"fz":3,"temp":22.9,"x":3,"y":0,"z":2},{"fz":4,"temp":22.6,"x":3,"y":0,"z":3},{"fz":1,"temp":21.6,"x":3,"y":1,"z":0},{"fz":2,"temp":21.6,"x":3,"y":1,"z":1},{"fz":3,"temp":21.8,"x":3,"y":1,"z":2},{"fz":4,"temp":21.7,"x":3,"y":1,"z":3},{"fz":1,"temp":21.8,"x":3,"y":2,"z":0},{"fz":2,"temp":20.3,"x":3,"y":2,"z":1},{"fz":3,"temp":21.4,"x":3,"y":2,"z":2},{"fz":4,"temp":20.7,"x":3,"y":2,"z":3},{"fz":1,"temp":21.6,"x":3,"y":3,"z":0},{"fz":2,"temp":18.8,"x":3,"y":3,"z":1},{"fz":3,"temp":21,"x":3,"y":3,"z":2},{"fz":4,"temp":20.4,"x":3,"y":3,"z":3},{"fz":1,"temp":21.1,"x":3,"y":4,"z":0},{"fz":2,"temp":15.5,"x":3,"y":4,"z":1},{"fz":3,"temp":18.8,"x":3,"y":4,"z":2},{"fz":4,"temp":20,"x":3,"y":4,"z":3},{"fz":1,"temp":21.1,"x":3,"y":5,"z":0},{"fz":2,"temp":15,"x":3,"y":5,"z":1},{"fz":3,"temp":19.4,"x":3,"y":5,"z":2},{"fz":4,"temp":19.7,"x":3,"y":5,"z":3},{"fz":1,"temp":22.3,"x":2,"y":0,"z":0},{"fz":2,"temp":22.2,"x":2,"y":0,"z":1},{"fz":3,"temp":22.3,"x":2,"y":0,"z":2},{"fz":4,"temp":22.6,"x":2,"y":0,"z":3},{"fz":1,"temp":21.8,"x":2,"y":1,"z":0},{"fz":2,"temp":21.1,"x":2,"y":1,"z":1},{"fz":3,"temp":21.9,"x":2,"y":1,"z":2},{"fz":4,"temp":21.7,"x":2,"y":1,"z":3},{"fz":1,"temp":21.8,"x":2,"y":2,"z":0},{"fz":2,"temp":20.3,"x":2,"y":2,"z":1},{"fz":3,"temp":21.3,"x":2,"y":2,"z":2},{"fz":4,"temp":20.9,"x":2,"y":2,"z":3},{"fz":1,"temp":21.4,"x":2,"y":3,"z":0},{"fz":2,"temp":17.9,"x":2,"y":3,"z":1},{"fz":3,"temp":20.3,"x":2,"y":3,"z":2},{"fz":4,"temp":19.5,"x":2,"y":3,"z":3},{"fz":1,"temp":20.9,"x":2,"y":4,"z":0},{"fz":2,"temp":14.5,"x":2,"y":4,"z":1},{"fz":3,"temp":18.1,"x":2,"y":4,"z":2},{"fz":4,"temp":19.1,"x":2,"y":4,"z":3},{"fz":1,"temp":20.9,"x":2,"y":5,"z":0},{"fz":2,"temp":15.6,"x":2,"y":5,"z":1},{"fz":3,"temp":19.1,"x":2,"y":5,"z":2},{"fz":4,"temp":20.6,"x":2,"y":5,"z":3},{"fz":1,"temp":21.9,"x":1,"y":0,"z":0},{"fz":2,"temp":22.8,"x":1,"y":0,"z":1},{"fz":3,"temp":22.9,"x":1,"y":0,"z":2},{"fz":4,"temp":22.1,"x":1,"y":0,"z":3},{"fz":1,"temp":21.6,"x":1,"y":1,"z":0},{"fz":2,"temp":21.3,"x":1,"y":1,"z":1},{"fz":3,"temp":22.1,"x":1,"y":1,"z":2},{"fz":4,"temp":21.6,"x":1,"y":1,"z":3},{"fz":1,"temp":21.8,"x":1,"y":2,"z":0},{"fz":2,"temp":20.8,"x":1,"y":2,"z":1},{"fz":3,"temp":21.8,"x":1,"y":2,"z":2},{"fz":4,"temp":20.6,"x":1,"y":2,"z":3},{"fz":1,"temp":21.5,"x":1,"y":3,"z":0},{"fz":2,"temp":19.1,"x":1,"y":3,"z":1},{"fz":3,"temp":21,"x":1,"y":3,"z":2},{"fz":4,"temp":20,"x":1,"y":3,"z":3},{"fz":1,"temp":19.7,"x":1,"y":4,"z":0},{"fz":2,"temp":16.6,"x":1,"y":4,"z":1},{"fz":3,"temp":18.7,"x":1,"y":4,"z":2},{"fz":4,"temp":18.9,"x":1,"y":4,"z":3},{"fz":1,"temp":19.5,"x":1,"y":5,"z":0},{"fz":2,"temp":14.8,"x":1,"y":5,"z":1},{"fz":3,"temp":19.1,"x":1,"y":5,"z":2},{"fz":4,"temp":19.6,"x":1,"y":5,"z":3},{"fz":1,"temp":24.5,"x":0,"y":0,"z":0},{"fz":2,"temp":23.9,"x":0,"y":0,"z":1},{"fz":3,"temp":23.2,"x":0,"y":0,"z":2},{"fz":4,"temp":23.9,"x":0,"y":0,"z":3},{"fz":1,"temp":23.1,"x":0,"y":1,"z":0},{"fz":2,"temp":22.9,"x":0,"y":1,"z":1},{"fz":3,"temp":22.7,"x":0,"y":1,"z":2},{"fz":4,"temp":22.5,"x":0,"y":1,"z":3},{"fz":1,"temp":21.9,"x":0,"y":2,"z":0},{"fz":2,"temp":21.7,"x":0,"y":2,"z":1},{"fz":3,"temp":22.4,"x":0,"y":2,"z":2},{"fz":4,"temp":22.1,"x":0,"y":2,"z":3},{"fz":1,"temp":21.3,"x":0,"y":3,"z":0},{"fz":2,"temp":21.1,"x":0,"y":3,"z":1},{"fz":3,"temp":22.4,"x":0,"y":3,"z":2},{"fz":4,"temp":22.5,"x":0,"y":3,"z":3},{"fz":1,"temp":21.5,"x":0,"y":4,"z":0},{"fz":2,"temp":19.1,"x":0,"y":4,"z":1},{"fz":3,"temp":21.1,"x":0,"y":4,"z":2},{"fz":4,"temp":21.5,"x":0,"y":4,"z":3},{"fz":1,"temp":21.2,"x":0,"y":5,"z":0},{"fz":2,"temp":18.7,"x":0,"y":5,"z":1},{"fz":3,"temp":21.5,"x":0,"y":5,"z":2},{"fz":4,"temp":22.2,"x":0,"y":5,"z":3}],"listRows":[{"sumNum":32,"sumTemp":709,"tempAve":22.2,"tempMax":24.5,"tempMin":20.5,"y":0},{"sumNum":32,"sumTemp":684.6,"tempAve":21.4,"tempMax":23.1,"tempMin":20,"y":1},{"sumNum":32,"sumTemp":662,"tempAve":20.7,"tempMax":22.4,"tempMin":18.1,"y":2},{"sumNum":32,"sumTemp":636.6,"tempAve":19.9,"tempMax":22.5,"tempMin":15,"y":3},{"sumNum":32,"sumTemp":602.2,"tempAve":18.8,"tempMax":21.5,"tempMin":13.3,"y":4},{"sumNum":32,"sumTemp":610.3,"tempAve":19.1,"tempMax":22.2,"tempMin":13.9,"y":5}],"mquality":{"$ref":"$[0][0].mquality"},"points":"22.0,21.0,21.6,20.5,22.0,20.5,20.8,20.0,21.8,19.7,19.9,19.1,21.3,18.3,19.3,18.6,19.6,17.3,18.9,19.0,21.6,16.8,19.2,19.8,22.0,21.4,21.6,21.8,21.2,20.3,21.0,21.0,21.7,19.5,20.5,20.5,21.5,19.0,20.4,19.2,21.5,17.8,20.1,20.1,21.3,18.0,20.0,19.8,21.8,20.9,22.0,22.0,21.9,20.3,20.9,20.1,21.7,18.3,19.9,19.0,21.2,15.0,18.1,18.4,21.3,13.3,16.9,18.6,21.0,13.9,17.4,19.6,21.6,21.2,21.3,21.4,22.0,20.0,21.1,20.5,21.5,18.1,20.0,19.2,20.5,17.0,20.3,18.7,20.5,14.9,18.6,18.7,19.9,15.0,18.9,20.1,22.2,22.6,22.9,22.6,21.6,21.6,21.8,21.7,21.8,20.3,21.4,20.7,21.6,18.8,21.0,20.4,21.1,15.5,18.8,20.0,21.1,15.0,19.4,19.7,22.3,22.2,22.3,22.6,21.8,21.1,21.9,21.7,21.8,20.3,21.3,20.9,21.4,17.9,20.3,19.5,20.9,14.5,18.1,19.1,20.9,15.6,19.1,20.6,21.9,22.8,22.9,22.1,21.6,21.3,22.1,21.6,21.8,20.8,21.8,20.6,21.5,19.1,21.0,20.0,19.7,16.6,18.7,18.9,19.5,14.8,19.1,19.6,24.5,23.9,23.2,23.9,23.1,22.9,22.7,22.5,21.9,21.7,22.4,22.1,21.3,21.1,22.4,22.5,21.5,19.1,21.1,21.5,21.2,18.7,21.5,22.2","receiveDate":"2024-11-16 09:59:56","remark":"粮温正常","sysDate":1747912482757,"tempAve":20.3,"tempIn":21,"tempMax":24.5,"tempMin":13.3,"tempOut":19.9,"weather":"小雨"}]; if (!listGrainData) { return; } grainData = listGrainData[0]; // 显示采集点信息 resetGrainChart3d(); // 粮情信息赋值 renderGrainInfo(); // 在批次选择中添加下拉数据 resetSelectBatchId(); // 调用全部关闭 layer.closeAll(); layer.msg("更新成功……"); // $.ajax({ // type: "POST", // url: "../../basic/grain/query-list-data", // dataType: "json", // contentType: "application/json;charset=UTF-8", // data: JSON.stringify(data), // success: function (result) { // if (result.code != "0000") { // layer.msg(result.msg); // clearGrainChart3d(); // } // listGrainData = result.data; // if (!listGrainData) { // return; // } // grainData = listGrainData[0]; // // 显示采集点信息 // resetGrainChart3d(); // // 粮情信息赋值 // renderGrainInfo(); // // 在批次选择中添加下拉数据 // resetSelectBatchId(); // // 调用全部关闭 // layer.closeAll(); // layer.msg("更新成功……"); // }, // error: function () { // layer.msg("根据当前条件获取粮情数据渲染图标失败!!"); // } // }); }; // 填写粮情信息 function renderGrainInfo() { // 配置仓库卡片信息 var depotData = grainData.depotData; $("#depotTypeName").text(depotData.depotTypeName); $("#storeDate").text(depotData.storeDate); $("#storageReal").text(depotData.storageReal); $("#foodVarietyName").text(depotData.foodVarietyName); $("#perWet").text(depotData.perWet); $("#depotStatus").text(DEPOT_STATUS_MSG(depotData.depotStatus)); $("#foodLocation").text(depotData.foodLocation); $("#perImpurity").text(depotData.perImpurity); $("#storeKeeperName").text(depotData.storeKeeperName); $("#storeKeeperLevel").text(depotData.storeKeeperLevel); $("#storeKeeperPhone").text(depotData.storeKeeperPhone); // 粮情检测信息赋值 $("#checkUser").text(grainData.checkUser); $("#tempMax").text(grainData.tempMax); $("#tempAve").text(grainData.tempAve); $("#tempMin").text(grainData.tempMin); //console.log("------------"+grainData.humidityIn); //如果湿度==0表示没有获取到 if(grainData.humidityIn != 0){ $("#tempIn").text(grainData.tempIn <= -100.0 ? "--" : grainData.tempIn); $("#humidityIn").text( grainData.humidityIn <= -100.0 ? "--" : grainData.humidityIn); } if(grainData.humidityOut != 0){ $("#tempOut").text(grainData.tempOut <= -100.0 ? "--" : grainData.tempOut); $("#humidityOut").text( grainData.humidityOut <= -100.0 ? "--" : grainData.humidityOut); } }; // 根据批次更新的值调整 function flushGrainByBatchId(batchId) { var temp; $.each(listGrainData, function (index, item) { if (item.batchId == batchId) { temp = item; return false; } }); if (temp) { grainData = temp; // 显示采集点信息 resetGrainChart3d(); // 粮情信息赋值 renderGrainInfo(); layer.msg("更新成功……"); } }; // 重置批次下拉框 function resetSelectBatchId() { // 首先清空原来的值 $("#batchId").empty(); // 未下拉框赋值 $.each(listGrainData, function (index, item) { $('#batchId').append(new Option(item.receiveDate, item.batchId));// 下拉菜单里添加元素 }); $('#batchId').append(new Option("选择时间……", "0")); form.render(); }; // 更多批次选择 function showMore() { layer.open({ type: 1, title: '选择检测时间', area: ['300px', '400px'], shade: 0, content: $('#dialogMoreSelect'), btn: 0, closeBtn: 1 }); }; // 单个粮情检测 function checkGrain() { layer.msg("暂未开放!"); return; if (!depotId) { layer.msg("请先选择仓库!"); return; } var data = { depotId: depotId }; $.ajax({ type: "POST", url: "../../basic/grain/check-single", dataType: "json", contentType: "application/json;charset=UTF-8", data: JSON.stringify(data), success: function (result) { showOrderProgress(); if (result.code != "ORDER_SUCCESS") { layer.msg(result.msg); } else { layer.msg("命令已经成功发送,待终端响应……"); } }, error: function () { layer.alert("粮情检测出现异常,执行失败!"); } }); }; // 批量粮情采集 function checkGrainBatch() { layer.msg("暂未开放!"); return; $('#batchCheckSelect input').each(function () { $(this).prop("checked", false); }); form.render(); // 弹出选择框 layer.open({ type: 1, title: '批量检测选择仓库', area: ['730px', '450px'], shade: 0, content: $('#batchCheckSelect'), btn: ['全选', '反选', '重选', '确定检测', '取消检测'], yes: function () { $('#batchCheckSelect input').each(function () { $(this).prop("checked", true); }); form.render(); }, btn2: function () { $('#batchCheckSelect input').each(function () { if ($(this).prop("checked")) { $(this).prop("checked", false); } else { $(this).prop("checked", true); } }); form.render(); return false; }, btn3: function () { $('#batchCheckSelect input').each(function () { $(this).prop("checked", false); }); form.render(); return false; }, btn4: function () { showOrderProgress(); return checkBatchTodo(); }, btn5: function () { layer.close(0); }, closeBtn: 0 }); }; /** * 开始执行批量检测 */ function checkBatchTodo() { var depotIds = ""; $('#batchCheckSelect input').each(function () { if ($(this).prop("checked")) { depotIds += $(this).val() + ","; } }); if (depotIds == "") { layer.msg("请先选择需要检测的仓库……"); return false; } layer.msg("开始执行批量检测……"); // 调用后台批量检测 var data = { depotIds: depotIds }; $.ajax({ type: "POST", url: "../../basic/grain/check-batch", dataType: "json", contentType: "application/json;charset=UTF-8", data: JSON.stringify(data), success: function (result) { if (result.code != "ORDER_SUCCESS") { layer.alert("执行失败:" + result.msg); return false; } else { layer.msg("命令已经成功发送,待终端响应……"); return true; } }, error: function () { layer.alert("粮情检测出现异常,执行失败!"); return false; } }); return true; }; /** * 弹出命令执行进度框 */ var iframeOrderIndex = 0; function showOrderProgress() { layer.msg("暂未开放!"); return; var domId = "#layui-layer-iframe" + iframeOrderIndex; if ($(domId).length == 0) { iframeOrderIndex = layer.open({ type: 2, title: "执行进度和记录", icon: 1, shadeClose: true, shade: 0.3, closeBtn: 1, anim: 2, area: ['1000px', '600px'], content: '../../basic/grain/order-list?depotId=' + depotId + "&t=" + Math.random() }); } }