All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.schoolwow.util.domain.query.jsonobject.QueryJSONObject Maven / Gradle / Ivy

The newest version!
package cn.schoolwow.util.domain.query.jsonobject;

import cn.schoolwow.util.module.query.jsonobject.domain.JSONObjectQueryOption;
import com.alibaba.fastjson.JSONObject;

public class QueryJSONObject {
    private JSONObjectQueryOption jsonObjectQueryOption = new JSONObjectQueryOption();

    /**创建实例列表查询*/
    public static  QueryJSONObject newQuery(JSONObject object){
        QueryJSONObject jsonQuery = new QueryJSONObject();
        jsonQuery.jsonObjectQueryOption.object = object;
        return jsonQuery;
    }

    public QueryJSONObjectResponse execute(){
        return new QueryJSONObjectResponse(jsonObjectQueryOption);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy