📄 depotgoodsbillform.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -