ECOrderItem.java
资源名称:ECommerce.rar [点击查看]
上传用户:jinbo168
上传日期:2015-05-30
资源大小:415k
文件大小:1k
源码类别:
网络编程
开发平台:
JavaScript
- package com.wxpn.tutorial.ec.bean;
- import java.util.Date;
- /**
- * 描述: 描述书籍信息类
- *
- * @Copyright (c) 2005-2008 Wang Xining
- * @author 王夕宁
- * @version 1.0
- */
- public class ECOrderItem {
- private int id;
- private int orderid;
- private int bookid;
- private String bookname;
- private int booknumber;
- private double goods_price;
- private int status;
- private String username;
- public int getId() {
- return id;
- }
- public void setId(int id) {
- this.id = id;
- }
- public int getBookid() {
- return bookid;
- }
- public void setBookid(int bookid) {
- this.bookid = bookid;
- }
- public int getBooknumber() {
- return booknumber;
- }
- public void setBooknumber(int booknumber) {
- this.booknumber = booknumber;
- }
- public double getGoods_price() {
- return goods_price;
- }
- public void setGoods_price(double goods_price) {
- this.goods_price = goods_price;
- }
- public String getBookname() {
- return bookname;
- }
- public void setBookname(String bookname) {
- this.bookname = bookname;
- }
- public int getOrderid() {
- return orderid;
- }
- public void setOrderid(int orderid) {
- this.orderid = orderid;
- }
- public int getStatus() {
- return status;
- }
- public void setStatus(int status) {
- this.status = status;
- }
- public String getUsername() {
- return username;
- }
- public void setUsername(String username) {
- this.username = username;
- }
- }
English
