123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- package com.miniframe.model.system;
- import com.miniframe.system.MiniserviceBaseModel;
- import java.io.Serializable;
- import javax.persistence.*;
- @Table(name = "sys_function")
- public class SysFunction extends MiniserviceBaseModel implements Serializable {
- /**
- * 功能id : 功能id
- */
- @Id
- private String functionid;
- /**
- * 分类名称 : 功能分类id
- */
- private String classname;
- /**
- * 功能名称 : 功能名称
- */
- private String functionname;
- /**
- * 功能描述 : 功能描述
- */
- private String functiondesc;
- /**
- * 是否开启
- */
- private Boolean enable;
- /**
- * 是否需要用户选择
- */
- private Boolean usersel;
- private static final long serialVersionUID = 1L;
- /**
- * 获取功能id : 功能id
- *
- * @return functionid - 功能id : 功能id
- */
- public String getFunctionid() {
- return functionid;
- }
- /**
- * 设置功能id : 功能id
- *
- * @param functionid 功能id : 功能id
- */
- public void setFunctionid(String functionid) {
- this.functionid = functionid == null ? null : functionid.trim();
- }
- /**
- * 获取分类名称 : 功能分类id
- *
- * @return classname - 分类名称 : 功能分类id
- */
- public String getClassname() {
- return classname;
- }
- /**
- * 设置分类名称 : 功能分类id
- *
- * @param classname 分类名称 : 功能分类id
- */
- public void setClassname(String classname) {
- this.classname = classname == null ? null : classname.trim();
- }
- /**
- * 获取功能名称 : 功能名称
- *
- * @return functionname - 功能名称 : 功能名称
- */
- public String getFunctionname() {
- return functionname;
- }
- /**
- * 设置功能名称 : 功能名称
- *
- * @param functionname 功能名称 : 功能名称
- */
- public void setFunctionname(String functionname) {
- this.functionname = functionname == null ? null : functionname.trim();
- }
- /**
- * 获取功能描述 : 功能描述
- *
- * @return functiondesc - 功能描述 : 功能描述
- */
- public String getFunctiondesc() {
- return functiondesc;
- }
- /**
- * 设置功能描述 : 功能描述
- *
- * @param functiondesc 功能描述 : 功能描述
- */
- public void setFunctiondesc(String functiondesc) {
- this.functiondesc = functiondesc == null ? null : functiondesc.trim();
- }
- /**
- * 获取是否开启
- *
- * @return enable - 是否开启
- */
- public Boolean getEnable() {
- return enable;
- }
- /**
- * 设置是否开启
- *
- * @param enable 是否开启
- */
- public void setEnable(Boolean enable) {
- this.enable = enable;
- }
- /**
- * 获取是否需要用户选择
- *
- * @return usersel - 是否需要用户选择
- */
- public Boolean getUsersel() {
- return usersel;
- }
- /**
- * 设置是否需要用户选择
- *
- * @param usersel 是否需要用户选择
- */
- public void setUsersel(Boolean usersel) {
- this.usersel = usersel;
- }
- }
|