tablestore/src/main/java/com/alicloud/openservices/tablestore/model/timeseries/ScanTimeseriesDataRequest.java [81:88]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void addFieldToGet(String fieldName, ColumnType fieldType) {
        Preconditions.checkNotNull(fieldName);
        Preconditions.checkNotNull(fieldType);
        if (fieldsToGet == null) {
            fieldsToGet = new ArrayList<Pair<String, ColumnType>>();
        }
        fieldsToGet.add(new Pair<String, ColumnType>(fieldName, fieldType));
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tablestore/src/main/java/com/alicloud/openservices/tablestore/model/timeseries/GetTimeseriesDataRequest.java [99:106]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void addFieldToGet(String fieldName, ColumnType fieldType) {
        Preconditions.checkNotNull(fieldName);
        Preconditions.checkNotNull(fieldType);
        if (fieldsToGet == null) {
            fieldsToGet = new ArrayList<Pair<String, ColumnType>>();
        }
        fieldsToGet.add(new Pair<String, ColumnType>(fieldName, fieldType));
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



