| | |
| | | import com.java110.core.base.dao.BaseServiceDao; |
| | | import com.java110.report.dao.IReportInfoSettingTitleValueServiceDao; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import com.java110.core.log.LoggerFactory; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | |
| | | |
| | | return businessReportInfoSettingTitleValueInfos; |
| | | } |
| | | /** |
| | | * 查询批量操作日志详情信息(instance) |
| | | * @param info bId 信息 |
| | | * @return List<Map> |
| | | * @throws DAOException DAO异常 |
| | | */ |
| | | @Override |
| | | public List<Map> getReportInfoSettingTitleValueInfoResult(Map info) throws DAOException { |
| | | logger.debug("查询批量操作日志详情信息 入参 info : {}",info); |
| | | |
| | | List<Map> businessReportInfoSettingTitleValueInfos = sqlSessionTemplate.selectList("reportInfoSettingTitleValueServiceDaoImpl.getReportInfoSettingTitleValueInfoResult",info); |
| | | |
| | | return businessReportInfoSettingTitleValueInfos; |
| | | } |
| | | |
| | | |
| | | /** |