package com.g9.g9backend.pojo; | |
import com.baomidou.mybatisplus.annotation.TableId; | |
import lombok.*; | |
/** | |
* Community 实体类,表示社区的数据模型 | |
* | |
* @author hcy | |
*/ | |
@Data | |
@AllArgsConstructor | |
@NoArgsConstructor | |
public class Community { | |
@TableId | |
private int communityId; | |
private String communityName; | |
private String communityPicture; | |
private String description; | |
private float hot; | |
private String type; | |
private int threadNumber; | |
private int resourceId; | |
} |