📄 goodsform.java~3~
字号:
package com.domain;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionMapping;
import javax.servlet.http.HttpServletRequest;
//商品bean
public class GoodsForm
extends ActionForm {
private Integer big;
private String creaTime;
private Float freePrice;
private String from;
private Integer id;
private String introduce;
private String name;
private Float nowPrice;
private Integer number;
private Integer small;
private String priture;
public Integer getBig() {
return big;
}
public void setBig(Integer big) {
this.big = big;
}
public void setSmall(Integer small) {
this.small = small;
}
public void setPriture(String priture) {
this.priture = priture;
}
public void setNumber(Integer number) {
this.number = number;
}
public void setNowPrice(Float nowPrice) {
this.nowPrice = nowPrice;
}
public void setName(String name) {
this.name = name;
}
public void setIntroduce(String introduce) {
this.introduce = introduce;
}
public void setId(Integer id) {
this.id = id;
}
public void setFrom(String from) {
this.from = from;
}
public void setFreePrice(Float freePrice) {
this.freePrice = freePrice;
}
public void setCreaTime(String creaTime) {
this.creaTime = creaTime;
}
public String getCreaTime() {
return creaTime;
}
public Float getFreePrice() {
return freePrice;
}
public String getPicture() {
return priture;
}
public String getFrom() {
return from;
}
public Integer getId() {
return id;
}
public String getIntroduce() {
return introduce;
}
public String getName() {
return name;
}
public Float getNowPrice() {
return nowPrice;
}
public Integer getNumber() {
return number;
}
public Integer getSmall() {
return small;
}
public ActionErrors validate(ActionMapping actionMapping,
HttpServletRequest httpServletRequest) {
/** @todo: finish this method, this is just the skeleton.*/
return null;
}
public void reset(ActionMapping actionMapping,
HttpServletRequest servletRequest) {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -