Files
wxSend/src/main/java/cn/van333/wxsend/business/model/FlarumDiscussion.java
2024-04-29 17:52:20 +08:00

40 lines
859 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}