standardlinkitem.java
来自「这是一个用java三层框架做的ISS学员管理系统」· Java 代码 · 共 79 行
JAVA
79 行
package com.isoftstone.isscrmweb.web.mapping;
/**
* Standardlinkitem generated by MyEclipse - Hibernate Tools
*/
public class Standardlinkitem extends
org.pontifex.web.mapping.PageInfo implements
java.io.Serializable {
private Empinfo empinfo;
// Fields
private Item item;
private Feeback feeback;
// Property accessors
public Item getItem() {
return this.item;
}
public void setItem(Item item) {
this.item = item;
}
public Feeback getFeeback() {
return this.feeback;
}
public void setFeeback(Feeback feeback) {
this.feeback = feeback;
}
public boolean equals(Object other) {
if ((this == other))
return true;
if ((other == null))
return false;
if (!(other instanceof Standardlinkitem))
return false;
Standardlinkitem castOther = (Standardlinkitem) other;
return ((this.getItem() == castOther.getItem()) || (this.getItem() != null
&& castOther.getItem() != null && this.getItem().equals(
castOther.getItem())))
&& ((this.getFeeback() == castOther.getFeeback()) || (this
.getFeeback() != null
&& castOther.getFeeback() != null && this.getFeeback()
.equals(castOther.getFeeback())));
}
public int hashCode() {
int result = 17;
result = 37 * result
+ (getItem() == null ? 0 : this.getItem().hashCode());
result = 37 * result
+ (getFeeback() == null ? 0 : this.getFeeback().hashCode());
return result;
}
// Constructors
/** default constructor */
public Standardlinkitem() {
}
public Empinfo getEmpinfo() {
return this.empinfo;
}
public void setEmpinfo(Empinfo empinfo) {
this.empinfo = empinfo;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?