package com.example.entity; import java.io.Serializable; /** * 评论信息表 */ public class Comment implements Serializable { private static final long serialVersionUID = 1L; /** ID */ private Integer id; private Integer userId; private Integer businessId; private Integer goodsId; private String businessName; private String goodsName; private String time; private String content; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Integer getUserId() { return userId; } public void setUserId(Integer userId) { this.userId = userId; } public Integer getBusinessId() { return businessId; } public void setBusinessId(Integer businessId) { this.businessId = businessId; } public Integer getGoodsId() { return goodsId; } public void setGoodsId(Integer goodsId) { this.goodsId = goodsId; } public String getBusinessName() { return businessName; } public void setBusinessName(String businessName) { this.businessName = businessName; } public String getGoodsName() { return goodsName; } public void setGoodsName(String goodsName) { this.goodsName = goodsName; } public String getTime() { return time; } public void setTime(String time) { this.time = time; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } }