コード例 #1
0
ファイル: NewsLayoutManager.java プロジェクト: sunyzc/xpress
 @Transactional(readOnly = true)
 public List<NewsLayout> findAllLayoutWithDeviceIdAndState(Long deviceId, Boolean state) {
   return newsLayoutDao.findAllLayoutWithDeviceIdAndState(deviceId, state);
 }
コード例 #2
0
ファイル: NewsLayoutManager.java プロジェクト: sunyzc/xpress
 public void deleteNewsLayout(Long id) {
   newsLayoutDao.delete(id);
 }