}
public ITableOp insert(String json, String... more) {
IN_DB_OPERATOR.set(true);
try {
DataMap map = JSON.toObject(json, DataMap.class);
InsertOp.insert(table, map);
for (String item : more) {
map = JSON.toObject(item, DataMap.class);
InsertOp.insert(table, map);
}