public int update(Simple simple) { int sid = simple.getSid(); Simple os = this.findByid(sid); if (os != null && StringUtils.isEmpty(simple.getSname())) { return dao.update(simple); } return 0; }
public int save(Simple simple) { if (StringUtils.isEmpty(simple.getSname())) { return 0; } return dao.save(simple); }