携程评论java抓取,Spring Boot爬取携程网站用户评论数据整合mybatis项目案例

package com.fei.entity;

import java.util.Date;

public class Comment {

/**

* ID

*/

private Integer id;

/**

* 用户id

*/

private String userId;

/**

* 用户类型

*/

private String userType;

/**

* 用户评分

*/

private String score;

/**

* 评论时间

*/

private Date commentTips;

/**

* 用户评论详细内容

*/

private String commentInfo;

/**

* ID

* @return id ID

*/

public Integer getId() {

return id;

}

/**

* ID

* @param id ID

*/

public void setId(Integer id) {

this.id = id;

}

/**

* 用户id

* @return user_id 用户id

*/

public String getUserId() {

return userId;

}

/**

* 用户id

* @param userId 用户id

*/

public void setUserId(String userId) {

this.userId = userId == null ? null : userId.trim();

}

/**

* 用户类型

* @return user_type 用户类型

*/

public String getUserType() {

return userType;

}

/**

* 用户类型

* @param userType 用户类型

*/

public void setUserType(String userType) {

this.userType = userType == null ? null : userType.trim();

}

/**

* 用户评分

* @return score 用户评分

*/

public String getScore() {

return score;

}

/**

* 用户评分

* @param score 用户评分

*/

public void setScore(String score) {

this.score = score == null ? null : score.trim();

}

/**

* 评论时间

* @return comment_tips 评论时间

*/

public Date getCommentTips() {

return commentTips;

}

/**

* 评论时间

* @param commentTips 评论时间

*/

public void setCommentTips(Date commentTips) {

this.commentTips = commentTips;

}

/**

* 用户评论详细内容

* @return comment_info 用户评论详细内容

*/

public String getCommentInfo() {

return commentInfo;

}

/**

* 用户评论详细内容

* @param commentInfo 用户评论详细内容

*/

public void setCommentInfo(String commentInfo) {

this.commentInfo = commentInfo == null ? null : commentInfo.trim();

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值