SalesItem.java
上传用户:lsj999sz
上传日期:2022-06-15
资源大小:4717k
文件大小:1k
源码类别:

ICQ/即时通讯

开发平台:

Java

  1. package com.bjsxt.shopping.order;
  2. import com.bjsxt.shopping.product.Product;
  3. public class SalesItem {
  4. private int id;
  5. private Product product;
  6. private double unitPrice;
  7. private int count;
  8. private int orderId;
  9. public int getCount() {
  10. return count;
  11. }
  12. public void setCount(int count) {
  13. this.count = count;
  14. }
  15. public int getId() {
  16. return id;
  17. }
  18. public void setId(int id) {
  19. this.id = id;
  20. }
  21. public int getOrderId() {
  22. return orderId;
  23. }
  24. public void setOrderId(int orderId) {
  25. this.orderId = orderId;
  26. }
  27. public Product getProduct() {
  28. return product;
  29. }
  30. public void setProduct(Product product) {
  31. this.product = product;
  32. }
  33. public double getUnitPrice() {
  34. return unitPrice;
  35. }
  36. public void setUnitPrice(double unitPrice) {
  37. this.unitPrice = unitPrice;
  38. }
  39. }