@Transactional(readOnly = true) public List<NewsLayout> findAllLayoutWithDeviceIdAndState(Long deviceId, Boolean state) { return newsLayoutDao.findAllLayoutWithDeviceIdAndState(deviceId, state); }
public void deleteNewsLayout(Long id) { newsLayoutDao.delete(id); }