コード例 #1
0
 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;
 }
コード例 #2
0
 public int save(Simple simple) {
   if (StringUtils.isEmpty(simple.getSname())) {
     return 0;
   }
   return dao.save(simple);
 }