public boolean read(Integer id) { Sms record = smsDAO.select(id); record.setIsRead("1"); return smsDAO.update(record); }
public boolean delete(Integer id) { Sms record = smsDAO.select(id); return smsDAO.delete(record); }
public Sms select(Integer id) { return smsDAO.select(id); }