
com.alicloud.openservices.tablestore.reader.PrimaryKeyWithTable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tablestore Show documentation
Show all versions of tablestore Show documentation
Aliyun Open Services SDK for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有
(C)阿里云计算有限公司 http://www.aliyun.com
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