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

com.alicloud.openservices.tablestore.reader.PrimaryKeyWithTable Maven / Gradle / Ivy

Go to download

Aliyun Open Services SDK for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有 (C)阿里云计算有限公司 http://www.aliyun.com

There is a newer version: 5.17.6
Show newest version
package com.alicloud.openservices.tablestore.reader;

import com.alicloud.openservices.tablestore.model.PrimaryKey;
import com.alicloud.openservices.tablestore.model.RowQueryCriteria;

public class PrimaryKeyWithTable {
    private String tableName;
    private PrimaryKey primaryKey;
    private RowQueryCriteria criteria;

    public PrimaryKeyWithTable(String tableName, PrimaryKey primaryKey) {
        this.tableName = tableName;
        this.primaryKey = primaryKey;
    }

    public PrimaryKeyWithTable(String tableName, PrimaryKey primaryKey, RowQueryCriteria criteria) {
        this.tableName = tableName;
        this.primaryKey = primaryKey;
        this.criteria = criteria;
    }

    public String getTableName() {
        return tableName;
    }

    public void setTableName(String tableName) {
        this.tableName = tableName;
    }

    public PrimaryKey getPrimaryKey() {
        return primaryKey;
    }

    public void setPrimaryKey(PrimaryKey primaryKey) {
        this.primaryKey = primaryKey;
    }

    public RowQueryCriteria getCriteria() {
        return criteria;
    }

    public void setCriteria(RowQueryCriteria criteria) {
        this.criteria = criteria;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy