ConfigStore configs = new DefaultConfigStore();
configs.and(Compare.JSON_CONTAINS, "CODES>$.A", 11);
set = service.selects(table, configs);
System.out.println(set.toJSON());
configs = new DefaultConfigStore();
configs.and(Compare.JSON_CONTAINS, "CODES>$.C", "张三");
set = service.selects(table, configs);
System.out.println(set.toJSON());
configs = new DefaultConfigStore();
configs.and(Compare.JSON_CONTAINS_PATH_AND, "CODES", "$.A");
set = service.selects(table, configs);
System.out.println(set.toJSON());
configs = new DefaultConfigStore();
configs.and(Compare.JSON_CONTAINS_PATH_OR, "CODES", "$.A,$.B".split(","));
set = service.selects(table, configs);
System.out.println(set.toJSON());
configs = new DefaultConfigStore();
configs.and(Compare.JSON_CONTAINS_PATH_AND, "CODES", "$.A,$.B,$.C".split(","));
set = service.selects(table, configs);
System.out.println(set.toJSON());