| | |
| | | |
| | | |
| | | //单节数量统计导出(1.2.14) |
| | | public void exportBattTinfStatistic(HttpServletRequest req, HttpServletResponse resp) throws ParseException { |
| | | String topPic = req.getParameter("topPic"); //头部柱状图 |
| | | String goodVolPic = req.getParameter("goodVolPic"); //优秀电压图 |
| | | String goodResPic = req.getParameter("goodResPic"); //优秀内阻 |
| | | String badVolPic = req.getParameter("badVolPic"); //劣化电压图 |
| | | String badResPic = req.getParameter("badResPic"); //劣化内阻 |
| | | String damageVolPic = req.getParameter("damageVolPic"); //损坏电压图 |
| | | String damageResPic = req.getParameter("damageResPic"); //损坏内阻 |
| | | MonStic stic=ActionUtil.getGson("yyyy-MM-dd").fromJson(req.getParameter("stic"), MonStic.class); |
| | | public void exportBattTinfStatistic(HttpServletRequest req, HttpServletResponse resp, MonStic stic) throws ParseException { |
| | | String topPic = stic.getTopPic(); //头部柱状图 |
| | | String goodVolPic = stic.getGoodVolPic(); //优秀电压图 |
| | | String goodResPic = stic.getGoodResPic(); //优秀内阻 |
| | | String badVolPic = stic.getBadVolPic(); //劣化电压图 |
| | | String badResPic = stic.getBadResPic(); //劣化内阻 |
| | | String damageVolPic = stic.getDamageVolPic(); //损坏电压图 |
| | | String damageResPic = stic.getDamageResPic(); //损坏内阻 |
| | | User uinf= ActionUtil.getUser(); |
| | | stic.setUid(uinf.getId()); |
| | | Map<String,Object> map= battTinfService.getMonStatistic(stic); |