我对 POJO 有疑问。
以下面的例子
public class User
{
String user="";
String password="";
String firstName="";
String lastName="";
ChallengeQuestions challengeQuestions;
//getter and setters for these prooperties
}
public class ChallengeQuestions
{
String question="";
String answer="";
//getter and setters for these properties
}
这是我的问题,User
类是否是 POJO。
谢谢,
纳伦德拉