📄 abstractpprivilege.java
字号:
/* * WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized * by MyEclipse Hibernate tool integration. * * Created Sat Aug 20 23:09:26 CST 2005 by MyEclipse Hibernate Tool. */package com.infosys.Hibernate;import java.io.Serializable;/** * A class that represents a row in the p_privilege table. * You can customize the behavior of this class by editing the class, {@link PPrivilege()}. * WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized * by MyEclipse Hibernate tool integration. */public abstract class AbstractPPrivilege implements Serializable{ /** The cached hash code value for this instance. Settting to 0 triggers re-calculation. */ private int hashValue = 0; /** The composite primary key value. */ private java.lang.String prvid; /** The value of the simple parentprvid property. */ private java.lang.String parentprvid; /** The value of the simple name property. */ private java.lang.String name; /** The value of the simple url property. */ private java.lang.String url; /** The value of the simple remark property. */ private java.lang.String remark; /** The value of the simple vieworder property. */ private java.lang.Integer vieworder=new Integer(0); /** The value of the simple status property. */ private java.lang.Integer status=new Integer(0); /** The value of the simple status property. */ private java.lang.Integer issys=new Integer(0); /** * Simple constructor of AbstractPPrivilege instances. */ public AbstractPPrivilege() { } /** * Constructor of AbstractPPrivilege instances given a simple primary key. * @param prvid */ public AbstractPPrivilege(java.lang.String prvid) { this.setPrvid(prvid); } /** * Return the simple primary key value that identifies this object. * @return java.lang.String */ public java.lang.String getPrvid() { return prvid; } /** * Set the simple primary key value that identifies this object. * @param prvid */ public void setPrvid(java.lang.String prvid) { this.hashValue = 0; this.prvid = prvid; } /** * Return the value of the parentprvid column. * @return java.lang.String */ public java.lang.String getParentprvid() { return this.parentprvid; } /** * Set the value of the parentprvid column. * @param parentprvid */ public void setParentprvid(java.lang.String parentprvid) { this.parentprvid = parentprvid; } /** * Return the value of the name column. * @return java.lang.String */ public java.lang.String getName() { return this.name; } /** * Set the value of the name column. * @param name */ public void setName(java.lang.String name) { this.name = name; } /** * Return the value of the url column. * @return java.lang.String */ public java.lang.String getUrl() { return this.url; } /** * Set the value of the url column. * @param url */ public void setUrl(java.lang.String url) { this.url = url; } /** * Return the value of the remark column. * @return java.lang.String */ public java.lang.String getRemark() { return this.remark; } /** * Set the value of the remark column. * @param remark */ public void setRemark(java.lang.String remark) { this.remark = remark; } /** * Return the value of the vieworder column. * @return java.lang.Integer */ public java.lang.Integer getVieworder() { return this.vieworder; } /** * Set the value of the vieworder column. * @param vieworder */ public void setVieworder(java.lang.Integer vieworder) { this.vieworder = vieworder; } /** * Return the value of the status column. * @return java.lang.Integer */ public java.lang.Integer getStatus() { return this.status; } /** * Set the value of the status column. * @param status */ public void setStatus(java.lang.Integer status) { this.status = status; } /** * Implementation of the equals comparison on the basis of equality of the primary key values. * @param rhs * @return boolean */ public boolean equals(Object rhs) { if (rhs == null) return false; if (! (rhs instanceof PPrivilege)) return false; PPrivilege that = (PPrivilege) rhs; if (this.getPrvid() != null && that.getPrvid() != null) { if (! this.getPrvid().equals(that.getPrvid())) { return false; } } return true; } /** * Implementation of the hashCode method conforming to the Bloch pattern with * the exception of array properties (these are very unlikely primary key types). * @return int */ public int hashCode() { if (this.hashValue == 0) { int result = 17; int prvidValue = this.getPrvid() == null ? 0 : this.getPrvid().hashCode(); result = result * 37 + prvidValue; this.hashValue = result; } return this.hashValue; } /** * @return 返回 issys。 */ public java.lang.Integer getIssys() { return issys; } /** * @param issys 要设置的 issys。 */ public void setIssys(java.lang.Integer issys) { this.issys = issys; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -