com.huawei.dataconvert.db.table

package com.huawei.dataconvert.db.table;

import java.util.ArrayList;
import java.util.List;

public class Primary_Key
{
String tableName = "";

String keyName = "";

List<String> cols = null;

public Primary_Key(String tableName2)
{
this.tableName = tableName2;
cols = new ArrayList<String>();
}

public List<String> getCols()
{
return cols;
}

public void setCols(List<String> cols)
{
this.cols = cols;
}

public String getKeyName()
{
return keyName;
}

public void setKeyName(String keyName)
{
this.keyName = keyName;
}

public String getTableName()
{
return tableName;
}

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

}

你可能感兴趣的:(java)