package com.lyms.cm.entity.sys; import java.io.Serializable; import com.baomidou.mybatisplus.activerecord.Model; /** *

* *

* * @author 风车车 * @since 2016-12-12 */ public class Role extends Model { private static final long serialVersionUID = 1L; /** * */ private String id; /** * */ private String name; /** * */ private String description; /** * */ private String resources; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getResources() { return resources; } public void setResources(String resources) { this.resources = resources; } @Override protected Serializable pkVal() { return this.id; } }