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

ICQ/即时通讯

开发平台:

Java

  1. package com.bjsxt.shopping.product;
  2. import java.util.Date;
  3. //DTO Data Transfer Object
  4. //通过显示层传递到了业务层
  5. public class ProductSearchFormBean {
  6. private int categoryId;
  7. private String name;
  8. private double lowNormalPrice;
  9. private double highNormalPrice;
  10. private double lowMemberPrice;
  11. private double highMemberPrice;
  12. private String startDate;
  13. private String endDate;
  14. public int getCategoryId() {
  15. return categoryId;
  16. }
  17. public void setCategoryId(int categoryId) {
  18. this.categoryId = categoryId;
  19. }
  20. public double getHighMemberPrice() {
  21. return highMemberPrice;
  22. }
  23. public void setHighMemberPrice(double highMemberPrice) {
  24. this.highMemberPrice = highMemberPrice;
  25. }
  26. public double getHighNormalPrice() {
  27. return highNormalPrice;
  28. }
  29. public void setHighNormalPrice(double highNormalPrice) {
  30. this.highNormalPrice = highNormalPrice;
  31. }
  32. public double getLowMemberPrice() {
  33. return lowMemberPrice;
  34. }
  35. public void setLowMemberPrice(double lowMemberPrice) {
  36. this.lowMemberPrice = lowMemberPrice;
  37. }
  38. public double getLowNormalPrice() {
  39. return lowNormalPrice;
  40. }
  41. public void setLowNormalPrice(double lowNormalPrice) {
  42. this.lowNormalPrice = lowNormalPrice;
  43. }
  44. public String getName() {
  45. if(this.name == null) return "";
  46. else return name;
  47. }
  48. public void setName(String name) {
  49. this.name = name;
  50. }
  51. public String getEndDate() {
  52. if(this.endDate == null) return "";
  53. else return endDate;
  54. }
  55. public void setEndDate(String endDate) {
  56. this.endDate = endDate;
  57. }
  58. public String getStartDate() {
  59. if(this.startDate == null) return "";
  60. else return startDate;
  61. }
  62. public void setStartDate(String startDate) {
  63. this.startDate = startDate;
  64. }
  65. public boolean validate () {
  66. return true;
  67. }
  68. }