爬虫写到论坛网站
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
package cn.van333.wxsend.business.model;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author Leo
|
||||
* @version 1.0
|
||||
* @create 2024/4/29 下午3:05
|
||||
* @description:
|
||||
*/
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@Resource
|
||||
public class FlarumDiscussion {
|
||||
|
||||
private Integer id;
|
||||
private String title;
|
||||
private int commentCount;
|
||||
private int participantCount;
|
||||
private int postNumberIndex;
|
||||
private Date createdAt;
|
||||
private Integer userId;
|
||||
private Integer firstPostId;
|
||||
private Date lastPostedAt;
|
||||
private Integer lastPostedUserId;
|
||||
private Integer lastPostId;
|
||||
private Integer lastPostNumber;
|
||||
private Date hiddenAt;
|
||||
private Integer hiddenUserId;
|
||||
private String slug;
|
||||
private boolean isPrivate;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user