depotgoodsbillform.java
来自「jxc 企业资源系统ERP 的一部分」· Java 代码 · 共 89 行
JAVA
89 行
package com.luoin.struts.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
public class DepotgoodsbillForm extends ActionForm{
private Integer id;
private String picture;
private String type;
private String colornumber;
private String colorframedescribe;
private Integer amount;
private String remark;
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
return null;
}
public void reset(ActionMapping mapping, HttpServletRequest request) {
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getPicture() {
return this.picture;
}
public void setPicture(String picture) {
this.picture = picture;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getColornumber() {
return this.colornumber;
}
public void setColornumber(String colornumber) {
this.colornumber = colornumber;
}
public String getColorframedescribe() {
return this.colorframedescribe;
}
public void setColorframedescribe(String colorframedescribe) {
this.colorframedescribe = colorframedescribe;
}
public Integer getAmount() {
return this.amount;
}
public void setAmount(Integer amount) {
this.amount = amount;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?