blob: 35f63de7b4e227cd6e4b23567daf11a58b1e81f3 [file] [log] [blame]
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;
}