SysFuncEntity.java 777 Bytes
Newer Older
zzrdark committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
package com.mx.cneeds.server.entity;

import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;

import java.io.Serializable;
import java.util.Date;

/**
 * 功能表
 * 
 * @author Mark
 * @email sunlightcs@gmail.com
 * @date 2020-01-09 15:09:01
 */
@Data
@TableName("sys_func")
public class SysFuncEntity implements Serializable {
	private static final long serialVersionUID = 1L;

	/**
	 * 
	 */
	@TableId
	private Long funcId;
	/**
	 * 
	 */
	private Long parentId;
	/**
	 * 
	 */
	private String name;
	/**
	 * 
	 */
	private String url;
	/**
	 * 
	 */
	private String perms;
	/**
zzrdark committed
44
	 * 类型   0:目录   1:菜单   2:按钮
zzrdark committed
45 46 47 48 49 50 51 52
	 */
	private Integer type;
	/**
	 * 
	 */
	private Integer orderNum;

}