This commit is contained in:
zds
2022-07-19 08:36:57 +08:00
parent ae00868552
commit 36cfda097c
5 changed files with 85 additions and 36 deletions

View File

@@ -48,11 +48,11 @@ public class EquipmentfileServiceImpl implements EquipmentfileService {
}
String begin_time = map.get("begin_time");
if (StrUtil.isNotEmpty(begin_time)) {
map.put("begin_time", begin_time.substring(0,10)+" 00:00:00");
map.put("begin_time", begin_time.substring(0,10));
}
String end_time = map.get("end_time");
if (StrUtil.isNotEmpty(end_time)) {
map.put("end_time", end_time.substring(0,10)+" 23:59:59");
map.put("end_time", end_time.substring(0,10));
}
JSONObject json = WQL.getWO("QEM_EQUIPMENTFILE01").addParamMap(map).pageQuery(WqlUtil.getHttpContext(page), "equipmentfile.devicerecord_code");
return json;