about JPA persistence of entity class

来源:互联网 发布:三组数据生存分析spss 编辑:程序博客网 时间:2024/05/16 07:30

联合查询实体类写法:
实体
package *.entity;

import ........;

@SuppressWarnings("serial")
@javax.persistence.Entity//可持久实体
@Table(name="codedetail")//操作的表名

public class AdvanceDetailVW implements Serializable, Cloneable, AdvanceDetail {
 

 

 /** ID */
 @Id 

 protected String id;
 
  protected others colum.....;
 
 /** 交易时间 */
 protected String time;
 
  protected String type;
 //以下为get set方法,略
 }

原创粉丝点击