📄 codetable.java
字号:
package com.xfaccp.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionMapping;
import com.xfaccp.base.BaseForm;
/**
* CodeTable generated by MyEclipse Persistence Tools
*/
public class CodeTable extends BaseForm {
// Fields
public void reset(ActionMapping arg0, HttpServletRequest arg1) {
this.codeType="";
this.codeDisplay="";
this.showValue="";
this.codeValue=0.0f;
}
private Integer id;
private String codeType;
private Float codeValue;
private String showValue;
private String codeDisplay;
// Constructors
/** default constructor */
public CodeTable() {
}
/** full constructor */
public CodeTable(String codeType, Float codeValue, String showValue,
String codeDisplay) {
this.codeType = codeType;
this.codeValue = codeValue;
this.showValue = showValue;
this.codeDisplay = codeDisplay;
}
// Property accessors
public String getCodeType() {
return this.codeType;
}
public void setCodeType(String codeType) {
this.codeType = codeType;
}
public Float getCodeValue() {
return this.codeValue;
}
public void setCodeValue(Float codeValue) {
this.codeValue = codeValue;
}
public String getShowValue() {
return this.showValue;
}
public void setShowValue(String showValue) {
this.showValue = showValue;
}
public String getCodeDisplay() {
return this.codeDisplay;
}
public void setCodeDisplay(String codeDisplay) {
this.codeDisplay = codeDisplay;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -