entity类的属性类型的思考(该使用基本类型还是封装类型)
entity中
有的项目中使用基本类型作为类属性类型(比如:int,boolean,long);
有的项目中使用封装类作为类属性类型(比如:Integer,Boolean,Long)。
示例如下:
基本类型:
public class User {
private String name;
private int age;
private char sex;
}
public class User {
private String name;
private Integer age;
private Character sex;
}