コード例 #1
0
 @Transactional
 public List queryAccountByUsername(String username) {
   // TODO Auto-generated method stub
   return accountInfoDAO.queryAccountByUsername(username);
 }
コード例 #2
0
 @Transactional
 public int updateAccountById(String id) {
   return accountInfoDAO.updateAccountById(id);
 }
コード例 #3
0
 @Transactional
 public List queryAccountById(String id) {
   // TODO Auto-generated method stub
   return accountInfoDAO.queryAccountById(id);
 }
コード例 #4
0
 @Transactional
 public void deleteAccountInfo(AccountInfo accountInfo) {
   // TODO Auto-generated method stub
   accountInfoDAO.deleteAccountInfo(accountInfo);
 }
コード例 #5
0
 @Transactional
 public AccountInfo findAccountInfoById(String id) {
   // TODO Auto-generated method stub
   return accountInfoDAO.findAccountInfoById(id);
 }
コード例 #6
0
 @Transactional
 public void persistAccountInfo(AccountInfo accountInfo) {
   // TODO Auto-generated method stub
   accountInfoDAO.persistAccountInfo(accountInfo);
 }