类javax.persistence.Basic源码实例Demo

下面列出了怎么用javax.persistence.Basic的API类实例代码及写法,或者点击链接到github查看源代码。

/**
 * Gets the value of the disagreePercentage property.
 * 
 */
@Basic
@Column(name = "DISAGREE_PERCENTAGE", precision = 20)
public long getDisagreePercentage() {
    return disagreePercentage;
}
 
源代码2 项目: cia   文件: PersonData.java
/**
* Gets the hangar guid.
*
* @return the hangar guid
*/
  @Basic
  @Column(name = "HANGAR_GUID")
  public String getHangarGuid() {
      return hangarGuid;
  }
 
源代码3 项目: mycore   文件: MCRDNBTRANSFERRESULTS.java
/**
 * @return the tpName
 */
@Basic
@Column(name = "TP_NAME", length = 9, nullable = false)
public String getTpName() {
    return tpName;
}
 
/**
 * Gets the value of the hits property.
 * 
 */
@Basic
@Column(name = "HITS", precision = 20)
public long getHits() {
    return hits;
}
 
源代码5 项目: cia   文件: ViewRiksdagenPolitician.java
/**
 * Gets the value of the totalDaysServedGovernment property.
 * 
 */
@Basic
@Column(name = "TOTAL_DAYS_SERVED_GOVERNMENT", precision = 20)
public long getTotalDaysServedGovernment() {
    return totalDaysServedGovernment;
}
 
源代码6 项目: cia   文件: VoteData.java
/**
* Gets the last name.
*
* @return the last name
*/
  @Basic
  @Column(name = "LAST_NAME")
  public String getLastName() {
      return lastName;
  }
 
源代码7 项目: cia   文件: ViewRiksdagenCommittee.java
/**
 * Gets the value of the totalAssignments property.
 * 
 */
@Basic
@Column(name = "TOTAL_ASSIGNMENTS", precision = 20)
public long getTotalAssignments() {
    return totalAssignments;
}
 
源代码8 项目: cia   文件: BallotDocumentElement.java
/**
* Gets the system date.
*
* @return the system date
*/
  @Basic
  @Column(name = "SYSTEM_DATE")
  public String getSystemDate() {
      return systemDate;
  }
 
源代码9 项目: cia   文件: DocumentElement.java
/**
* Gets the made public date.
*
* @return the made public date
*/
  @Basic
  @Column(name = "MADE_PUBLIC_DATE")
  public String getMadePublicDate() {
      return madePublicDate;
  }
 
源代码10 项目: cia   文件: ViewRiksdagenVoteDataBallotSummary.java
/**
 * Gets the value of the yesVotes property.
 * 
 */
@Basic
@Column(name = "YES_VOTES", precision = 20)
public long getYesVotes() {
    return yesVotes;
}
 
源代码11 项目: cia   文件: ViewRiksdagenParty.java
/**
 * Gets the value of the headCount property.
 * 
 */
@Basic
@Column(name = "HEAD_COUNT", precision = 20)
public long getHeadCount() {
    return headCount;
}
 
源代码12 项目: cia   文件: CommitteeDocumentData.java
/**
* Gets the sub title.
*
* @return the sub title
*/
  @Basic
  @Column(name = "SUB_TITLE")
  public String getSubTitle() {
      return subTitle;
  }
 
源代码13 项目: cia   文件: DocumentData.java
/**
* Gets the title.
*
* @return the title
*/
  @Basic
  @Column(name = "TITLE", length = 65536)
  public String getTitle() {
      return title;
  }
 
源代码14 项目: cia   文件: ViewRiksdagenPolitician.java
/**
 * Gets the value of the totalDaysServed property.
 * 
 */
@Basic
@Column(name = "TOTAL_DAYS_SERVED", precision = 20)
public long getTotalDaysServed() {
    return totalDaysServed;
}
 
源代码15 项目: livingdoc-core   文件: State.java
@Basic
@Column(name = "CODE", unique = true, nullable = false, length = 255)
public String getCode() {
    return code;
}
 
源代码16 项目: cia   文件: DocumentElement.java
/**
* Gets the debate name.
*
* @return the debate name
*/
  @Basic
  @Column(name = "DEBATE_NAME")
  public String getDebateName() {
      return debateName;
  }
 
源代码17 项目: cia   文件: ViewRiksdagenGovermentRoleMember.java
/**
 * Gets the value of the active property.
 * 
 */
@Basic
@Column(name = "ACTIVE")
public boolean isActive() {
    return active;
}
 
/**
 * Gets the value of the politicianYesVotes property.
 * 
 */
@Basic
@Column(name = "POLITICIAN_YES_VOTES", precision = 20)
public long getPoliticianYesVotes() {
    return politicianYesVotes;
}
 
/**
 * Gets the value of the bornYear property.
 * 
 */
@Basic
@Column(name = "BORN_YEAR", precision = 10, scale = 0)
public int getBornYear() {
    return bornYear;
}
 
源代码20 项目: cia   文件: ViewRiksdagenMinistry.java
/**
 * Gets the value of the currentMemberSize property.
 * 
 */
@Basic
@Column(name = "CURRENT_MEMBER_SIZE", precision = 20)
public long getCurrentMemberSize() {
    return currentMemberSize;
}
 
源代码21 项目: cia   文件: ViewRiksdagenVoteDataBallotSummary.java
/**
 * Gets the value of the approved property.
 * 
 */
@Basic
@Column(name = "APPROVED")
public boolean isApproved() {
    return approved;
}
 
源代码22 项目: cia   文件: SwedenPoliticalParty.java
/**
* Gets the phone number.
*
* @return the phone number
*/
  @Basic
  @Column(name = "PHONE_NUMBER")
  public String getPhoneNumber() {
      return phoneNumber;
  }
 
源代码23 项目: cia   文件: IndicatorElement.java
/**
* Gets the source organization.
*
* @return the source organization
*/
  @Basic
  @Column(name = "SOURCE_ORGANIZATION", length = 65536)
  public String getSourceOrganization() {
      return sourceOrganization;
  }
 
源代码24 项目: cia   文件: Topic.java
/**
* Gets the value.
*
* @return the value
*/
  @Basic
  @Column(name = "VALUE_")
  public String getValue() {
      return value;
  }
 
/**
 * Gets the value of the partyApproved property.
 * 
 */
@Basic
@Column(name = "PARTY_APPROVED")
public boolean isPartyApproved() {
    return partyApproved;
}
 
源代码26 项目: cia   文件: Source.java
/**
* Gets the id.
*
* @return the id
*/
  @Basic
  @Column(name = "ID")
  public String getId() {
      return id;
  }
 
源代码27 项目: cia   文件: PersonElement.java
/**
* Gets the first name.
*
* @return the first name
*/
  @Basic
  @Column(name = "FIRST_NAME")
  public String getFirstName() {
      return firstName;
  }
 
源代码28 项目: cia   文件: DocumentProposalData.java
/**
* Gets the wording 2.
*
* @return the wording 2
*/
  @Basic
  @Column(name = "WORDING_2")
  public String getWording2() {
      return wording2;
  }
 
源代码29 项目: cia   文件: BallotDocumentElement.java
/**
* Gets the org.
*
* @return the org
*/
  @Basic
  @Column(name = "ORG")
  public String getOrg() {
      return org;
  }
 
/**
 * Gets the value of the partyYesVotes property.
 * 
 */
@Basic
@Column(name = "PARTY_YES_VOTES", precision = 20)
public long getPartyYesVotes() {
    return partyYesVotes;
}
 
 类所在包
 同包方法