public static void delete(java.lang.Long id) {
   Time entity = Time.findById(id);
   entity.delete();
   index();
 }