Product.java
上传用户:sxychgz
上传日期:2019-04-21
资源大小:4772k
文件大小:1k
源码类别:

电子政务应用

开发平台:

Java

  1. package com.bjsxt.shopping.product;
  2. import java.util.Date;
  3. import com.bjsxt.shopping.category.Category;
  4. public class Product {
  5. private int id;
  6. private String name;
  7. private String descr;
  8. private double normalPrice;
  9. private double memberPrice;
  10. private Date pdate;
  11. private int categoryId;
  12. private Category category;
  13. public int getCategoryId() {
  14. return categoryId;
  15. }
  16. public void setCategoryId(int categoryId) {
  17. this.categoryId = categoryId;
  18. }
  19. public String getDescr() {
  20. return descr;
  21. }
  22. public void setDescr(String descr) {
  23. this.descr = descr;
  24. }
  25. public int getId() {
  26. return id;
  27. }
  28. public void setId(int id) {
  29. this.id = id;
  30. }
  31. public double getMemberPrice() {
  32. return memberPrice;
  33. }
  34. public void setMemberPrice(double memberPrice) {
  35. this.memberPrice = memberPrice;
  36. }
  37. public String getName() {
  38. return name;
  39. }
  40. public void setName(String name) {
  41. this.name = name;
  42. }
  43. public double getNormalPrice() {
  44. return normalPrice;
  45. }
  46. public void setNormalPrice(double normalPrice) {
  47. this.normalPrice = normalPrice;
  48. }
  49. public Date getPdate() {
  50. return pdate;
  51. }
  52. public void setPdate(Date pdate) {
  53. this.pdate = pdate;
  54. }
  55. public void update() {
  56. }
  57. public Category getCategory() {
  58. return category;
  59. }
  60. public void setCategory(Category category) {
  61. this.category = category;
  62. }
  63. }