blob: 6e1f370960f8078cfd83a0f52bdce20eaeef0f4c [file] [log] [blame]
package com.g9.g9backend.pojo;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.*;
/**
* Community 实体类,表示社区的数据模型
*
* @author hcy
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Community {
@TableId(type = IdType.AUTO)
private int communityId;
private String communityName;
private String communityPicture;
private String description;
private float hot;
private String type;
private int threadNumber;
private int resourceId;
}