Commit 1faf4d34 authored by 胡小根's avatar 胡小根

coding

parent 07b3818a
......@@ -193,4 +193,14 @@ public class MybatisExampleHelper {
return exampleObjCriteria;
}
public static String getSimpleFilter(String table, String column, String oper, Object value){
return JSON.toJSONString(new HashMap(){{
put(table, new HashMap(){{
put(column, new HashMap(){{
put(oper, value);
}});
}});
}});
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment