所以我的小组正在尝试找到一种方法来为我们的船员表生成一个唯一的主键。但是我们不希望它是基于整数的,我们希望它是基于字符串的。我们做得对吗?
public String crewMemberPrimaryKeyGenerator(int ID){
String newPrimaryKey = "8";fdasdf
for (int i = 0; i<ID; i++){
newPrimaryKey.concat("=");
}
newPrimaryKey.concat("D");
return newPrimaryKey;
}