📄 ht.java
字号:
/*
* Author :Cao guangxin
* on 26-三月-2005 at 09:54:55
*
* Mail:relationinfo@hotmail.com
*
* visit:www.relaioninfo.com or www.helpsoft.org
*/
package org.helpsoft.contract.dto;
import org.helpsoft.contract.dao.*;
import org.helpsoft.contract.factory.*;
import org.helpsoft.contract.exceptions.*;
import java.io.Serializable;
import java.util.*;
import java.util.Date;
public class Ht implements Serializable
{
/**
* This attribute maps to the column htbm in the ht table.
*/
private String htbm;
/**
* This attribute maps to the column jfdlrbm in the ht table.
*/
private String jfdlrbm;
/**
* This attribute maps to the column jfbm in the ht table.
*/
private String jfbm;
/**
* This attribute maps to the column qsdd in the ht table.
*/
private String qsdd;
/**
* This attribute maps to the column yf in the ht table.
*/
private String yf;
/**
* This attribute maps to the column yfdlr in the ht table.
*/
private String yfdlr;
/**
* This attribute maps to the column jfqzrq in the ht table.
*/
private Date jfqzrq;
/**
* This attribute maps to the column yfqzrq in the ht table.
*/
private Date yfqzrq;
/**
* This attribute maps to the column xmmc in the ht table.
*/
private String xmmc;
/**
* This attribute maps to the column htnr in the ht table.
*/
private String htnr;
/**
* ??'Ht'
*
*/
public Ht()
{
}
/**
* ??'getHtbm'
*
* @return String
*/
public String getHtbm()
{
return htbm;
}
/**
* ??'setHtbm'
*
* @param htbm
*/
public void setHtbm(String htbm)
{
this.htbm = htbm;
}
/**
* ??'getJfdlrbm'
*
* @return String
*/
public String getJfdlrbm()
{
return jfdlrbm;
}
/**
* ??'setJfdlrbm'
*
* @param jfdlrbm
*/
public void setJfdlrbm(String jfdlrbm)
{
this.jfdlrbm = jfdlrbm;
}
/**
* ??'getJfbm'
*
* @return String
*/
public String getJfbm()
{
return jfbm;
}
/**
* ??'setJfbm'
*
* @param jfbm
*/
public void setJfbm(String jfbm)
{
this.jfbm = jfbm;
}
/**
* ??'getQsdd'
*
* @return String
*/
public String getQsdd()
{
return qsdd;
}
/**
* ??'setQsdd'
*
* @param qsdd
*/
public void setQsdd(String qsdd)
{
this.qsdd = qsdd;
}
/**
* ??'getYf'
*
* @return String
*/
public String getYf()
{
return yf;
}
/**
* ??'setYf'
*
* @param yf
*/
public void setYf(String yf)
{
this.yf = yf;
}
/**
* ??'getYfdlr'
*
* @return String
*/
public String getYfdlr()
{
return yfdlr;
}
/**
* ??'setYfdlr'
*
* @param yfdlr
*/
public void setYfdlr(String yfdlr)
{
this.yfdlr = yfdlr;
}
/**
* ??'getJfqzrq'
*
* @return Date
*/
public Date getJfqzrq()
{
return jfqzrq;
}
/**
* ??'setJfqzrq'
*
* @param jfqzrq
*/
public void setJfqzrq(Date jfqzrq)
{
this.jfqzrq = jfqzrq;
}
/**
* ??'getYfqzrq'
*
* @return Date
*/
public Date getYfqzrq()
{
return yfqzrq;
}
/**
* ??'setYfqzrq'
*
* @param yfqzrq
*/
public void setYfqzrq(Date yfqzrq)
{
this.yfqzrq = yfqzrq;
}
/**
* ??'getXmmc'
*
* @return String
*/
public String getXmmc()
{
return xmmc;
}
/**
* ??'setXmmc'
*
* @param xmmc
*/
public void setXmmc(String xmmc)
{
this.xmmc = xmmc;
}
/**
* ??'getHtnr'
*
* @return String
*/
public String getHtnr()
{
return htnr;
}
/**
* ??'setHtnr'
*
* @param htnr
*/
public void setHtnr(String htnr)
{
this.htnr = htnr;
}
/**
* ??'equals'
*
* @param _other
* @return boolean
*/
public boolean equals(Object _other)
{
if (_other == null) {
return false;
}
if (_other == this) {
return true;
}
if (!(_other instanceof Ht)) {
return false;
}
final Ht _cast = (Ht) _other;
if (htbm == null ? _cast.htbm != htbm : !htbm.equals( _cast.htbm )) {
return false;
}
if (jfdlrbm == null ? _cast.jfdlrbm != jfdlrbm : !jfdlrbm.equals( _cast.jfdlrbm )) {
return false;
}
if (jfbm == null ? _cast.jfbm != jfbm : !jfbm.equals( _cast.jfbm )) {
return false;
}
if (qsdd == null ? _cast.qsdd != qsdd : !qsdd.equals( _cast.qsdd )) {
return false;
}
if (yf == null ? _cast.yf != yf : !yf.equals( _cast.yf )) {
return false;
}
if (yfdlr == null ? _cast.yfdlr != yfdlr : !yfdlr.equals( _cast.yfdlr )) {
return false;
}
if (jfqzrq == null ? _cast.jfqzrq != jfqzrq : !jfqzrq.equals( _cast.jfqzrq )) {
return false;
}
if (yfqzrq == null ? _cast.yfqzrq != yfqzrq : !yfqzrq.equals( _cast.yfqzrq )) {
return false;
}
if (xmmc == null ? _cast.xmmc != xmmc : !xmmc.equals( _cast.xmmc )) {
return false;
}
if (htnr == null ? _cast.htnr != htnr : !htnr.equals( _cast.htnr )) {
return false;
}
return true;
}
/**
* ??'hashCode'
*
* @return int
*/
public int hashCode()
{
int _hashCode = 0;
if (htbm != null) {
_hashCode = 29 * _hashCode + htbm.hashCode();
}
if (jfdlrbm != null) {
_hashCode = 29 * _hashCode + jfdlrbm.hashCode();
}
if (jfbm != null) {
_hashCode = 29 * _hashCode + jfbm.hashCode();
}
if (qsdd != null) {
_hashCode = 29 * _hashCode + qsdd.hashCode();
}
if (yf != null) {
_hashCode = 29 * _hashCode + yf.hashCode();
}
if (yfdlr != null) {
_hashCode = 29 * _hashCode + yfdlr.hashCode();
}
if (jfqzrq != null) {
_hashCode = 29 * _hashCode + jfqzrq.hashCode();
}
if (yfqzrq != null) {
_hashCode = 29 * _hashCode + yfqzrq.hashCode();
}
if (xmmc != null) {
_hashCode = 29 * _hashCode + xmmc.hashCode();
}
if (htnr != null) {
_hashCode = 29 * _hashCode + htnr.hashCode();
}
return _hashCode;
}
/**
* ??'createPk'
*
* @return HtPk
*/
public HtPk createPk()
{
return new HtPk(htbm);
}
/**
* ??'toString'
*
* @return String
*/
public String toString()
{
StringBuffer ret = new StringBuffer();
ret.append( "org.helpsoft.contract.dto.Ht: " );
ret.append( "htbm='" + htbm + "'" );
ret.append( ", jfdlrbm='" + jfdlrbm + "'" );
ret.append( ", jfbm='" + jfbm + "'" );
ret.append( ", qsdd='" + qsdd + "'" );
ret.append( ", yf='" + yf + "'" );
ret.append( ", yfdlr='" + yfdlr + "'" );
ret.append( ", jfqzrq='" + jfqzrq + "'" );
ret.append( ", yfqzrq='" + yfqzrq + "'" );
ret.append( ", xmmc='" + xmmc + "'" );
ret.append( ", htnr='" + htnr + "'" );
return ret.toString();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -