public void updateCheckphonebyAccount(String accountid, Long crrstate) { Checkphone checkphone = new Checkphone(); checkphone.setAccountid(accountid); checkphone.setCrrstate(crrstate); sqlMapClientTemplate.update("Checkphone.update", checkphone); }
public void insertCheckphone(Checkphone checkphone) { String accountid = checkphone.getAccountid(); this.updateCheckphonebyAccount(accountid, new Long(2)); sqlMapClientTemplate.insert("Checkphone.insert", checkphone); }