40 lines
859 B
Java
40 lines
859 B
Java
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;
|
||
|
||
}
|