java中多层结构中有不同的对象
持久层对象, 接受用户值的对象。还有data object  domain object 领域对象 值对象。有没有人能给去自己的叫法。来统一一下不同层次结构不同对象的称呼我的理解data object  domain object 都是领域对象。 都是在client端和service提供者之间的传输对象,他们应该是简单的属性值容器。Data Objects 数据对象 持久层  实体对象。有明确的类型。用于持久化的对象。 用在持久层和service层  
•Generic to the data structure being retrieved.
•Usually map to the database’s fields
•Defined in either the dataobj folder in your Service Control, or as a public static inner class in your Database Control.
•Implement java.util.Serializable
Domain Objects Domain Objects(域对象)用于接受用户的值 一般都是String类型,用于存储直接从用户获取的数据。用在web层
•Are data specific to the particular domain of the client 
•Usually map to the client’s requirement of the data, which could be a subset and/or include massaged or 
derived attributes of the data object.
•Defined in either the domainobj folder in your Service or Façade Control
•Usually an attribute in an Action Form Bean.
•实现 java.util.Serializable