ECOrderItem.java
上传用户:jinbo168
上传日期:2015-05-30
资源大小:415k
文件大小:1k
源码类别:

网络编程

开发平台:

JavaScript

  1. package com.wxpn.tutorial.ec.bean;
  2. import java.util.Date;
  3. /**
  4.  * 描述: 描述书籍信息类
  5.  * 
  6.  * @Copyright (c) 2005-2008 Wang Xining
  7.  * @author 王夕宁
  8.  * @version 1.0
  9.  */
  10. public class ECOrderItem {
  11. private int id;
  12. private int orderid;
  13. private int bookid;
  14. private String bookname;
  15. private int booknumber;
  16. private double goods_price;
  17. private int status;
  18. private String username;
  19. public int getId() {
  20. return id;
  21. }
  22. public void setId(int id) {
  23. this.id = id;
  24. }
  25. public int getBookid() {
  26. return bookid;
  27. }
  28. public void setBookid(int bookid) {
  29. this.bookid = bookid;
  30. }
  31. public int getBooknumber() {
  32. return booknumber;
  33. }
  34. public void setBooknumber(int booknumber) {
  35. this.booknumber = booknumber;
  36. }
  37. public double getGoods_price() {
  38. return goods_price;
  39. }
  40. public void setGoods_price(double goods_price) {
  41. this.goods_price = goods_price;
  42. }
  43. public String getBookname() {
  44. return bookname;
  45. }
  46. public void setBookname(String bookname) {
  47. this.bookname = bookname;
  48. }
  49. public int getOrderid() {
  50. return orderid;
  51. }
  52. public void setOrderid(int orderid) {
  53. this.orderid = orderid;
  54. }
  55. public int getStatus() {
  56. return status;
  57. }
  58. public void setStatus(int status) {
  59. this.status = status;
  60. }
  61. public String getUsername() {
  62. return username;
  63. }
  64. public void setUsername(String username) {
  65. this.username = username;
  66. }
  67. }