📄 xt6102serviceimpl.java
字号:
package jp.com.cost.xt.service.impl;
import java.util.List;
import jp.com.cost.dao.AccountDao;
import jp.com.cost.pojo.Account;
import jp.com.cost.xt.service.XT6102Service;
import jp.com.cost.xt.web.form.XT6102Form;
public class XT6102ServiceImpl implements XT6102Service {
private AccountDao accountDao;
/**
* @return the accountDao
*/
public AccountDao getAccountDao() {
return accountDao;
}
/**
* @param accountDao the accountDao to set
*/
public void setAccountDao(AccountDao accountDao) {
this.accountDao = accountDao;
}
public boolean addAccount(XT6102Form form) {
// TODO Auto-generated method stub
boolean bln = false;
bln = accountDao.addAccount(form);
return bln;
}
public Account searchAccountID(XT6102Form form) {
// TODO Auto-generated method stub
Account account = accountDao.findAccountID(form);
return account;
}
public List searchAid(String aid) {
// TODO Auto-generated method stub
List list = accountDao.findAid(aid);
return list;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -