📄 addgoodsform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.hz.struts.form;
import org.apache.struts.action.ActionForm;
/**
* MyEclipse Struts
* Creation date: 05-02-2008
*
* XDoclet definition:
* @struts.form name="addGoodsForm"
*/
public class AddGoodsForm extends ActionForm {
/*
* Generated fields
*/
/** detail property */
private String detail;
/** goodsName property */
private String goodsName;
/*
* Generated Methods
*/
/**
* Returns the detail.
* @return String
*/
public String getDetail() {
return detail;
}
/**
* Set the detail.
* @param detail The detail to set
*/
public void setDetail(String detail) {
this.detail = detail;
}
/**
* Returns the goodsName.
* @return String
*/
public String getGoodsName() {
return goodsName;
}
/**
* Set the goodsName.
* @param goodsName The goodsName to set
*/
public void setGoodsName(String goodsName) {
this.goodsName = goodsName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -