package com.partynetwork.iparty.info; public class CommentInfo { // 评论Id private int commentId; // 用户编号 private int userId; // 用户头像url地址 private String userHeadUrl; // 用户名 private String userName; // 用户性别:0 表示男;1 表示女;2 表示其他 private int userSex; // 评论内容 private String commentMessage; // 评论时间 private String commentTime; // 评论地点 private String commentPlace; // 经度 private float commentLongitude; // 纬度 private float commentLatitude; /** * @return commentId */ public int getCommentId() { return commentId; } /** * @param commentId * 要设置的 commentId */ public void setCommentId(int commentId) { this.commentId = commentId; } /** * @return userId */ public int getUserId() { return userId; } /** * @param userId * 要设置的 userId */ public void setUserId(int userId) { this.userId = userId; } /** * @return userHeadUrl */ public String getUserHeadUrl() { return userHeadUrl; } /** * @param userHeadUrl * 要设置的 userHeadUrl */ public void setUserHeadUrl(String userHeadUrl) { this.userHeadUrl = userHeadUrl; } /** * @return userName */ public String getUserName() { return userName; } /** * @param userName * 要设置的 userName */ public void setUserName(String userName) { this.userName = userName; } /** * @return userSex */ public int getUserSex() { return userSex; } /** * @param userSex * 要设置的 userSex */ public void setUserSex(int userSex) { this.userSex = userSex; } /** * @return commentMessage */ public String getCommentMessage() { return commentMessage; } /** * @param commentMessage * 要设置的 commentMessage */ public void setCommentMessage(String commentMessage) { this.commentMessage = commentMessage; } /** * @return commentTime */ public String getCommentTime() { return commentTime; } /** * @param commentTime * 要设置的 commentTime */ public void setCommentTime(String commentTime) { this.commentTime = commentTime; } /** * @return commentPlace */ public String getCommentPlace() { return commentPlace; } /** * @param commentPlace * 要设置的 commentPlace */ public void setCommentPlace(String commentPlace) { this.commentPlace = commentPlace; } /** * @return commentLongitude */ public float getCommentLongitude() { return commentLongitude; } /** * @param commentLongitude * 要设置的 commentLongitude */ public void setCommentLongitude(float commentLongitude) { this.commentLongitude = commentLongitude; } /** * @return commentLatitude */ public float getCommentLatitude() { return commentLatitude; } /** * @param commentLatitude * 要设置的 commentLatitude */ public void setCommentLatitude(float commentLatitude) { this.commentLatitude = commentLatitude; } }