1
有人可以舉例說明「持久性模型」應該從「視圖模型」中分離出來嗎?爲什麼?持久性模型與視圖模型
持久化模型:
@Entity
public class Employee {
@Id
private int id;
// Some other stuff
}
視圖模型:
public class EmployeeModel {
private int id;
// Some other stuff
}
而且,他們不應該被分開嗎?