/** * Copyright (c) 2011-2014, hubin (jobob@qq.com). * <p> * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package com.baomidou.mybatisplus.test.mysql.entity; import java.io.Serializable; import com.baomidou.mybatisplus.annotations.TableField; import com.baomidou.mybatisplus.annotations.TableId; import com.baomidou.mybatisplus.annotations.TableName; /** * <p> * 测试角色类 * </p> * * @author sjy * @Date 2016-09-09 */ @TableName(resultMap = "RoleMap") public class Role implements Serializable { @TableField(exist = false) private static final long serialVersionUID = 1L; /** 主键 */ @TableId private Long id; /** 角色 */ private String name; /** 排序 */ private Integer sort; /** 描述 */ private String description; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Integer getSort() { return this.sort; } public void setSort(Integer sort) { this.sort = sort; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } @Override public String toString() { return "Role{" + "id=" + id + ", name='" + name + '\'' + ", sort=" + sort + ", description='" + description + '\'' + '}'; } }