| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package com.malk.eastar.model;
- import com.alibaba.fastjson.JSONArray;
- import com.alibaba.fastjson.JSONObject;
- import com.malk.base.BaseDto;
- /**
- * AI表格数据处理客户端接口参数
- */
- public class AITableParam extends BaseDto {
- //每页获取的数据量,默认值为100,最小值为1,最大值为100
- private Integer maxResults;
- //上一次查询返回的游标,首次查询时不需要传
- private String nextToken;
- //筛选条件,设置后将只返回满足条件的记录
- private JSONObject filter;
- //操作数据
- private JSONObject records;
- public Integer getMaxResults() {
- return maxResults;
- }
- public void setMaxResults(Integer maxResults) {
- this.maxResults = maxResults;
- }
- public String getNextToken() {
- return nextToken;
- }
- public void setNextToken(String nextToken) {
- this.nextToken = nextToken;
- }
- public JSONObject getFilter() {
- return filter;
- }
- public void setFilter(JSONObject filter) {
- this.filter = filter;
- }
- public JSONObject getRecords() {
- return records;
- }
- public void setRecords(JSONObject records) {
- this.records = records;
- }
- }
|