RequestItem.java
上传用户:hgs128
上传日期:2007-02-03
资源大小:166k
文件大小:1k
源码类别:

百货/超市行业

开发平台:

WINDOWS

  1. /*
  2.  * Created on 1999-5-18
  3.  */
  4. package mdb;
  5. import java.io.Serializable;
  6. /**
  7.  * @author 28-9
  8.  *
  9.  * TODO To change the template for this generated type comment go to
  10.  * Window - Preferences - Java - Code Generation - Code and Comments
  11.  */
  12. public class RequestItem implements Serializable {
  13. private String username;
  14. private String passwd;
  15. private String itemID;
  16. private int quantity;
  17. public RequestItem(String usrname,String passwd,String itemid,
  18. int quantity) {
  19. super();
  20. setUsername(usrname);
  21. setPasswd(passwd);
  22. setItemID(itemid);
  23. setQuantity(quantity);
  24. }
  25. /**
  26.  * @return Returns the itemID.
  27.  */
  28. public String getItemID() {
  29. return itemID;
  30. }
  31. /**
  32.  * @param itemID The itemID to set.
  33.  */
  34. public void setItemID(String itemID) {
  35. this.itemID = itemID;
  36. }
  37. /**
  38.  * @return Returns the passwd.
  39.  */
  40. public String getPasswd() {
  41. return passwd;
  42. }
  43. /**
  44.  * @param passwd The passwd to set.
  45.  */
  46. public void setPasswd(String passwd) {
  47. this.passwd = passwd;
  48. }
  49. /**
  50.  * @return Returns the quantity.
  51.  */
  52. public int getQuantity() {
  53. return quantity;
  54. }
  55. /**
  56.  * @param quantity The quantity to set.
  57.  */
  58. public void setQuantity(int quantity) {
  59. this.quantity = quantity;
  60. }
  61. /**
  62.  * @return Returns the username.
  63.  */
  64. public String getUsername() {
  65. return username;
  66. }
  67. /**
  68.  * @param username The username to set.
  69.  */
  70. public void setUsername(String username) {
  71. this.username = username;
  72. }
  73. }