📄 hydata.java
字号:
package org.helpsoft.entity.hy;
import java.io.Serializable;
import org.helpsoft.entity.hyklx.*;
/**
* The HyData objects extends the generated Value object.
* Put here your presentation specific code.
*
* @author cao guangxin
*/
public class HyData extends HyValue implements HyIf, Serializable {
/**
* Default constructor.
*/
public HyData() {
}
/**
* Value object constructor.
*/
public HyData(org.helpsoft.entity.hy.HyIf value) {
setHykh(value.getHykh());
setHykmm(value.getHykmm());
setHyxm(value.getHyxm());
setKdjb(value.getKdjb());
setDqzt(value.getDqzt());
setHyjf(value.getHyjf());
setBz(value.getBz());
setHyxb(value.getHyxb());
setCsrq(value.getCsrq());
setDwzy(value.getDwzy());
setYddh(value.getYddh());
setGddh(value.getGddh());
setDzyj(value.getDzyj());
setZjlx(value.getZjlx());
setLxdz(value.getLxdz());
setQtxx(value.getQtxx());
}
/**
* Return the primary key.
*
* @return java.lang.String with the primary key.
*/
public java.lang.String getPrimaryKey() {
return getHykh();
}
/**
* Set the primary key.
*
* @param pk the primary key
*/
public void setPrimaryKey(java.lang.String pk) {
setHykh(pk);
}
public String getPrimaryKeyParameters() {
String parameters = "";
parameters += "&hykh=" + getHykh();
return parameters;
}
/**
* property.
*/
private HyklxIf hykmmHyklx;
/**
* Returns the value of the <code>hykmmHyklx</code> relation property.
*
* @return the value of the <code>hykmmHyklx</code> relation property.
*/
public HyklxIf getHykmmHyklx() {
return hykmmHyklx;
}
/**
* Sets the value of the <code>hykmmHyklx</code> relation property.
*
* @param hyklx a value for <code>hykmmHyklx</code>.
*/
public void setHykmmHyklx(HyklxIf hyklx) {
this.hykmmHyklx = hyklx;
}
public String toString() {
StringBuffer str = new StringBuffer("{");
str.append("hykh=" + getHykh() + " ");
str.append("hykmm=" + getHykmm() + " ");
str.append("hyxm=" + getHyxm() + " ");
str.append("kdjb=" + getKdjb() + " ");
str.append("dqzt=" + getDqzt() + " ");
str.append("hyjf=" + getHyjf() + " ");
str.append("bz=" + getBz() + " ");
str.append("hyxb=" + getHyxb() + " ");
str.append("csrq=" + getCsrq() + " ");
str.append("dwzy=" + getDwzy() + " ");
str.append("yddh=" + getYddh() + " ");
str.append("gddh=" + getGddh() + " ");
str.append("dzyj=" + getDzyj() + " ");
str.append("zjlx=" + getZjlx() + " ");
str.append("lxdz=" + getLxdz() + " ");
str.append("qtxx=" + getQtxx() + " ");
str.append('}');
return(str.toString());
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -