PromotionDC.java 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package com.ygj.yuemum.domain.promotion;
  2. public class PromotionDC {
  3. private Integer id;
  4. private String pd_title;
  5. private String pd_headimg;
  6. private String pd_startdate;
  7. private String pd_enddate;
  8. public Integer getId() {
  9. return id;
  10. }
  11. public void setId(Integer id) {
  12. this.id = id;
  13. }
  14. public String getPd_title() {
  15. return pd_title;
  16. }
  17. public void setPd_title(String pd_title) {
  18. this.pd_title = pd_title;
  19. }
  20. public String getPd_headimg() {
  21. return pd_headimg;
  22. }
  23. public void setPd_headimg(String pd_headimg) {
  24. this.pd_headimg = pd_headimg;
  25. }
  26. public String getPd_startdate() {
  27. return pd_startdate;
  28. }
  29. public void setPd_startdate(String pd_startdate) {
  30. this.pd_startdate = pd_startdate;
  31. }
  32. public String getPd_enddate() {
  33. return pd_enddate;
  34. }
  35. public void setPd_enddate(String pd_enddate) {
  36. this.pd_enddate = pd_enddate;
  37. }
  38. }