javax.persistence.GenerationType#AUTO源码实例Demo

下面列出了javax.persistence.GenerationType#AUTO 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: cia   文件: CommitteeProposalData.java
/**
* Gets the hjid.
*
* @return the hjid
*/
  @Id
  @Column(name = "HJID")
  @GeneratedValue(strategy = GenerationType.AUTO)
  public Long getHjid() {
      return hjid;
  }
 
源代码2 项目: cia   文件: CommitteeProposalComponentData.java
/**
* Gets the hjid.
*
* @return the hjid
*/
  @Id
  @Column(name = "HJID")
  @GeneratedValue(strategy = GenerationType.AUTO)
  public Long getHjid() {
      return hjid;
  }
 
源代码3 项目: jeewx   文件: WebOfficeEntity.java
/**
 *方法: 取得java.lang.Integer
 *@return: java.lang.Integer  id
 */

@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name ="ID",nullable=false,length=32)
public java.lang.Integer getId(){
	return this.id;
}
 
源代码4 项目: cia   文件: DetailData.java
/**
* Gets the hjid.
*
* @return the hjid
*/
  @Id
  @Column(name = "HJID")
  @GeneratedValue(strategy = GenerationType.AUTO)
  public Long getHjid() {
      return hjid;
  }
 
/**
* Gets the hjid.
*
* @return the hjid
*/
  @Id
  @Column(name = "HJID")
  @GeneratedValue(strategy = GenerationType.AUTO)
  public Long getHjid() {
      return hjid;
  }
 
源代码6 项目: cia   文件: AssignmentElement.java
/**
* Gets the hjid.
*
* @return the hjid
*/
  @Id
  @Column(name = "HJID")
  @GeneratedValue(strategy = GenerationType.AUTO)
  public Long getHjid() {
      return hjid;
  }
 
@Override
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
public Long getId() {

  return this.id;
}
 
源代码8 项目: cia   文件: DocumentDetailContainer.java
/**
* Gets the hjid.
*
* @return the hjid
*/
  @Id
  @Column(name = "HJID")
  @GeneratedValue(strategy = GenerationType.AUTO)
  public Long getHjid() {
      return hjid;
  }
 
源代码9 项目: cia   文件: PersonDetailElement.java
/**
* Gets the hjid.
*
* @return the hjid
*/
  @Id
  @Column(name = "HJID")
  @GeneratedValue(strategy = GenerationType.AUTO)
  public Long getHjid() {
      return hjid;
  }
 
源代码10 项目: cia   文件: DocumentProposalData.java
/**
* Gets the hjid.
*
* @return the hjid
*/
  @Id
  @Column(name = "HJID")
  @GeneratedValue(strategy = GenerationType.AUTO)
  public Long getHjid() {
      return hjid;
  }
 
源代码11 项目: Spring-5.0-Cookbook   文件: Employee.java
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
public Integer getId() {
	return id;
}
 
源代码12 项目: Spring-5.0-Cookbook   文件: Department.java
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
public Integer getId() {
	return id;
}
 
源代码13 项目: Spring-5.0-Cookbook   文件: Department.java
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
public Integer getId() {
	return id;
}
 
源代码14 项目: Spring-5.0-Cookbook   文件: LoginDetails.java
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
public Integer getId() {
	return id;
}
 
源代码15 项目: hyperjaxb3   文件: OneTwo.java
@Id
@Column(name = "HJID")
@GeneratedValue(strategy = GenerationType.AUTO)
public Long getHjid() {
    return hjid;
}
 
源代码16 项目: Spring-5.0-Cookbook   文件: Department.java
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
public Integer getId() {
	return id;
}
 
源代码17 项目: Spring-5.0-Cookbook   文件: LoginDetails.java
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
public Integer getId() {
	return id;
}
 
源代码18 项目: Spring-5.0-Cookbook   文件: UserDetails.java
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
public Integer getId() {
	return id;
}
 
源代码19 项目: joynr   文件: CustomParameterPersisted.java
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
protected final Long getId() {
    return id;
}
 
源代码20 项目: cia   文件: Agency.java
/**
 * Gets the value of the hjid property.
 * 
 * @return
 *     possible object is
 *     {@link Long }
 *     
 */
@Id
@Column(name = "HJID")
@GeneratedValue(strategy = GenerationType.AUTO)
public Long getHjid() {
    return hjid;
}