// 添加/修改
 public String save() {
   if (om.getUuid() == null) {
     orderDetailEbi.save(om);
   } else {
     orderDetailEbi.update(om);
   }
   return TO_LIST;
 }