鞍钢鲅鱼圈能源管控系统后端代码
liriming
9 天以前 568f43a40458df86be1cef4a6990aa4e902900a1
ansteel-biz/src/main/java/com/iailab/module/ansteel/ems/service/impl/ByqlzAdsServiceImpl.java
@@ -21,17 +21,17 @@
public class ByqlzAdsServiceImpl implements ByqlzAdsService {
    @Resource
    private ByqlzAdsDao gasPredConfDao;
    private ByqlzAdsDao byqlzAdsDao;
    @Override
    public void delete(String yearMonth) {
        Map<String,Object> map = new HashMap<>();
        map.put("date_code",yearMonth);
        gasPredConfDao.deleteByMap(map);
        byqlzAdsDao.deleteByMap(map);
    }
    @Override
    public void save(List<ByqlzAdsEntity> resultList) {
        gasPredConfDao.insert(resultList);
        byqlzAdsDao.insert(resultList);
    }
}