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