实体类
JavaBean有特定的写法:
一般用来和数据库的字段做映射 ORM;
ORM:对象关系映射
People表
id | name | age | address |
---|---|---|---|
1 | 多多1号 | 3 | 龙山 |
2 | 多多2号 | 22 | 龙山 |
3 | 多多3号 | 99 | 龙山 |
class People { private int id; private String name; private int age; private String address; } class A{ new People(1,"多多1号",3,"龙山"); }