public String addBefore(AopContext ac) throws Exception { //这里可以做手机以及邮箱的验证 为了方便只做昵称唯一的处理
String A= ac.record.getStr("A"); String B= ac.record.getStr("B"); Record table = Db.findFirst("select * from table where A=? and B = ?",A,B); if (table !=null) { return Easy.error("禁止重复添加!"); } return super.addBefore(ac); }