You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
/***********************************************************
* @Description : 前端页面实体类
* @author : 梁山广(Laing Shan Guang)
* @date : 2019-05-26 12:30
* @email : liangshanguang2@gmail.com
***********************************************************/
package lsgwr.exam.entity ;
import lombok.Data ;
import javax.persistence.Entity ;
import javax.persistence.GeneratedValue ;
import javax.persistence.Id ;
/**
* 前端页面实体类
*/
@Data
@Entity
public class Page {
/**
* 页面ID, 是主键, 通过@Id注解标识, 并通过@GeneratedValue注解指定主键生成策略
*/
@Id
@GeneratedValue
private Integer pageId ;
/**
* 页面名称
*/
private String pageName ;
/**
* 页面描述
*/
private String pageDescription ;
/**
* 页面关联的操作ID列表, 以逗号分隔
*/
private String actionIds ;
}