addgoodsform.java
来自「本系统为符合订单管理 精确使用了账号分层用户管理 可进行主订单 次订单的增加 删」· Java 代码 · 共 62 行
JAVA
62 行
/*
* 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 + =
减小字号Ctrl + -
显示快捷键?