审查视图

src/main/java/com/tianbo/warehouse/model/ROLE.java 905 字节
朱兆平 authored
1 2
package com.tianbo.warehouse.model;
3 4
public class ROLE {
    private Integer roleId;
朱兆平 authored
5 6 7 8 9 10 11

    private String roleName;

    private String roleSign;

    private String description;
12
    public Integer getRoleId() {
朱兆平 authored
13 14 15
        return roleId;
    }
16
    public void setRoleId(Integer roleId) {
朱兆平 authored
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
        this.roleId = roleId;
    }

    public String getRoleName() {
        return roleName;
    }

    public void setRoleName(String roleName) {
        this.roleName = roleName == null ? null : roleName.trim();
    }

    public String getRoleSign() {
        return roleSign;
    }

    public void setRoleSign(String roleSign) {
        this.roleSign = roleSign == null ? null : roleSign.trim();
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description == null ? null : description.trim();
    }
}