GoodForm.java
上传用户:wok5188
上传日期:2018-02-20
资源大小:1835k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Java

  1. /*
  2.  * Generated by MyEclipse Struts
  3.  * Template path: templates/java/JavaClass.vtl
  4.  */
  5. package com.center.control;
  6. import javax.servlet.http.HttpServletRequest;
  7. import org.apache.struts.action.ActionErrors;
  8. import org.apache.struts.action.ActionForm;
  9. import org.apache.struts.action.ActionMapping;
  10. /** 
  11.  * MyEclipse Struts
  12.  * Creation date: 05-16-2007
  13.  * 
  14.  * XDoclet definition:
  15.  * @struts.form name="goodUpdateForm"
  16.  */
  17. public class GoodForm extends ActionForm {
  18. /*
  19.  * Generated fields
  20.  */
  21. /** goodtype property */
  22. private String goodtype;
  23. /** goodpublisher property */
  24. private String goodpublisher;
  25. /** goodprice property */
  26. private double goodprice;
  27. /** gooddesc property */
  28. private String gooddesc;
  29. /** goodname property */
  30. private String goodname;
  31. /** id property */
  32. private int id;
  33. /*
  34.  * Generated Methods
  35.  */
  36. /** 
  37.  * Method validate
  38.  * @param mapping
  39.  * @param request
  40.  * @return ActionErrors
  41.  */
  42. public ActionErrors validate(ActionMapping mapping,
  43. HttpServletRequest request) {
  44. // TODO Auto-generated method stub
  45. return null;
  46. }
  47. /** 
  48.  * Method reset
  49.  * @param mapping
  50.  * @param request
  51.  */
  52. public void reset(ActionMapping mapping, HttpServletRequest request) {
  53. // TODO Auto-generated method stub
  54. }
  55. /** 
  56.  * Returns the goodtype.
  57.  * @return String
  58.  */
  59. public String getGoodtype() {
  60. return goodtype;
  61. }
  62. /** 
  63.  * Set the goodtype.
  64.  * @param goodtype The goodtype to set
  65.  */
  66. public void setGoodtype(String goodtype) {
  67. this.goodtype = goodtype;
  68. }
  69. /** 
  70.  * Returns the goodpublisher.
  71.  * @return String
  72.  */
  73. public String getGoodpublisher() {
  74. return goodpublisher;
  75. }
  76. /** 
  77.  * Set the goodpublisher.
  78.  * @param goodpublisher The goodpublisher to set
  79.  */
  80. public void setGoodpublisher(String goodpublisher) {
  81. this.goodpublisher = goodpublisher;
  82. }
  83. /** 
  84.  * Returns the goodprice.
  85.  * @return double
  86.  */
  87. public double getGoodprice() {
  88. return goodprice;
  89. }
  90. /** 
  91.  * Set the goodprice.
  92.  * @param goodprice The goodprice to set
  93.  */
  94. public void setGoodprice(double goodprice) {
  95. this.goodprice = goodprice;
  96. }
  97. /** 
  98.  * Returns the gooddesc.
  99.  * @return String
  100.  */
  101. public String getGooddesc() {
  102. return gooddesc;
  103. }
  104. /** 
  105.  * Set the gooddesc.
  106.  * @param gooddesc The gooddesc to set
  107.  */
  108. public void setGooddesc(String gooddesc) {
  109. this.gooddesc = gooddesc;
  110. }
  111. /** 
  112.  * Returns the goodname.
  113.  * @return String
  114.  */
  115. public String getGoodname() {
  116. return goodname;
  117. }
  118. /** 
  119.  * Set the goodname.
  120.  * @param goodname The goodname to set
  121.  */
  122. public void setGoodname(String goodname) {
  123. this.goodname = goodname;
  124. }
  125. /** 
  126.  * Returns the id.
  127.  * @return int
  128.  */
  129. public int getId() {
  130. return id;
  131. }
  132. /** 
  133.  * Set the id.
  134.  * @param id The id to set
  135.  */
  136. public void setId(int id) {
  137. this.id = id;
  138. }
  139. }