com.cq1080.pages.bean.entity.WebPage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Pages Show documentation
Show all versions of Pages Show documentation
Yet Another Spring Boot Framework
The newest version!
package com.cq1080.pages.bean.entity;
import com.cq1080.jpa.entity.BaseEntity;
import lombok.Data;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Lob;
@Data
@Entity
public class WebPage extends BaseEntity {
private String path;
private String title;
private String cover;
private String description;
@Lob
@Column(columnDefinition = "longtext")
private String content;
private Boolean hideInList;
}