📄 hyxfdata.java
字号:
package org.helpsoft.entity.hyxf;
import java.io.Serializable;
import org.helpsoft.entity.hy.*;
/**
* The HyxfData objects extends the generated Value object.
* Put here your presentation specific code.
*
* @author cao guangxin
*/
public class HyxfData extends HyxfValue implements HyxfIf, Serializable {
/**
* Default constructor.
*/
public HyxfData() {
}
/**
* Value object constructor.
*/
public HyxfData(org.helpsoft.entity.hyxf.HyxfIf value) {
setWzkqjg(value.getWzkqjg());
setHykh(value.getHykh());
setDzhsjsq(value.getDzhsjsq());
setCcxfjegj(value.getCcxfjegj());
setXfbz(value.getXfbz());
}
/**
* Return the primary key.
*
* @return java.lang.String with the primary key.
*/
public java.lang.String getPrimaryKey() {
return getWzkqjg();
}
/**
* Set the primary key.
*
* @param pk the primary key
*/
public void setPrimaryKey(java.lang.String pk) {
setWzkqjg(pk);
}
public String getPrimaryKeyParameters() {
String parameters = "";
parameters += "&wzkqjg=" + getWzkqjg();
return parameters;
}
/**
* property.
*/
private HyIf hykhHy;
/**
* Returns the value of the <code>hykhHy</code> relation property.
*
* @return the value of the <code>hykhHy</code> relation property.
*/
public HyIf getHykhHy() {
return hykhHy;
}
/**
* Sets the value of the <code>hykhHy</code> relation property.
*
* @param hy a value for <code>hykhHy</code>.
*/
public void setHykhHy(HyIf hy) {
this.hykhHy = hy;
}
public String toString() {
StringBuffer str = new StringBuffer("{");
str.append("wzkqjg=" + getWzkqjg() + " ");
str.append("hykh=" + getHykh() + " ");
str.append("dzhsjsq=" + getDzhsjsq() + " ");
str.append("ccxfjegj=" + getCcxfjegj() + " ");
str.append("xfbz=" + getXfbz() + " ");
str.append('}');
return(str.toString());
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -