All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.shmin.auth.permission.model.Role Maven / Gradle / Ivy

There is a newer version: 2.3.1-RELEASE
Show newest version
package net.shmin.auth.permission.model;

import java.util.List;

/**
 * Created by benjamin on 2017/1/4.
 */
public class Role {

    private T id;

    private List users;

    public List getUsers() {
        return users;
    }

    public void setUsers(List uid) {
        this.users = uid;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy