CommentPictureVo.java 1018 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package com.kmall.api.entity;
  2. import java.io.Serializable;
  3. /**
  4. * @author Scott
  5. * @email
  6. * @date 2017-08-15 08:03:40
  7. */
  8. public class CommentPictureVo implements Serializable {
  9. private static final long serialVersionUID = 1L;
  10. //主键
  11. private Integer id;
  12. //评价Id
  13. private Integer comment_id;
  14. //评价图片
  15. private String pic_url;
  16. //排序
  17. private Integer sort_order;
  18. public Integer getId() {
  19. return id;
  20. }
  21. public void setId(Integer id) {
  22. this.id = id;
  23. }
  24. public Integer getComment_id() {
  25. return comment_id;
  26. }
  27. public void setComment_id(Integer comment_id) {
  28. this.comment_id = comment_id;
  29. }
  30. public String getPic_url() {
  31. return pic_url;
  32. }
  33. public void setPic_url(String pic_url) {
  34. this.pic_url = pic_url;
  35. }
  36. public Integer getSort_order() {
  37. return sort_order;
  38. }
  39. public void setSort_order(Integer sort_order) {
  40. this.sort_order = sort_order;
  41. }
  42. }