Example #1
0
 /**
  * 删除反馈信息
  *
  * @param id
  * @return
  */
 public static int deleFeedBack(String id) {
   Long fid = Long.parseLong(id);
   int info = PohFeedback.delete("id=?", fid);
   return info;
 }