123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- package com.kmall.api.entity;
- import java.io.Serializable;
- /**
- * @author Scott
- * @email
- * @date 2017-08-15 08:03:40
- */
- public class CommentPictureVo implements Serializable {
- private static final long serialVersionUID = 1L;
- //主键
- private Integer id;
- //评价Id
- private Integer comment_id;
- //评价图片
- private String pic_url;
- //排序
- private Integer sort_order;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public Integer getComment_id() {
- return comment_id;
- }
- public void setComment_id(Integer comment_id) {
- this.comment_id = comment_id;
- }
- public String getPic_url() {
- return pic_url;
- }
- public void setPic_url(String pic_url) {
- this.pic_url = pic_url;
- }
- public Integer getSort_order() {
- return sort_order;
- }
- public void setSort_order(Integer sort_order) {
- this.sort_order = sort_order;
- }
- }
|