📄 bmpbeanpk.java
字号:
package com.cwj.userjmssesenbdb;
import java.io.*;
public class BMPBEANPK
implements Serializable {
public String shancbz;
public BMPBEANPK() {
}
public BMPBEANPK(String shancbz) {
this.shancbz = shancbz;
}
public boolean equals(Object obj) {
if (obj != null) {
if (this.getClass().equals(obj.getClass())) {
BMPBEANPK that = (BMPBEANPK) obj;
return ( ( (this.shancbz == null) && (that.shancbz == null)) ||
(this.shancbz != null && this.shancbz.equals(that.shancbz)));
}
}
return false;
}
public int hashCode() {
return shancbz.hashCode();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -