BMPBEANPK.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package com.cwj.userjmssesenbdb;
  2. import java.io.*;
  3. public class BMPBEANPK
  4.     implements Serializable {
  5.   public String shancbz;
  6.   public BMPBEANPK() {
  7.   }
  8.   public BMPBEANPK(String shancbz) {
  9.     this.shancbz = shancbz;
  10.   }
  11.   public boolean equals(Object obj) {
  12.     if (obj != null) {
  13.       if (this.getClass().equals(obj.getClass())) {
  14.         BMPBEANPK that = (BMPBEANPK) obj;
  15.         return ( ( (this.shancbz == null) && (that.shancbz == null)) ||
  16.                 (this.shancbz != null && this.shancbz.equals(that.shancbz)));
  17.       }
  18.     }
  19.     return false;
  20.   }
  21.   public int hashCode() {
  22.     return shancbz.hashCode();
  23.   }
  24. }