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

com.github.youyinnn.server.model.UserRelation Maven / Gradle / Ivy

There is a newer version: 1.0
Show newest version
package com.github.youyinnn.server.model;

/**
 * @author youyinnn
 */
public class UserRelation {

    private Integer id;

    private String userId;

    private String friendSet;

    private String groupSet;

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getUserId() {
        return userId;
    }

    public void setUserId(String userId) {
        this.userId = userId;
    }

    public String getFriendSet() {
        return friendSet;
    }

    public void setFriendSet(String friendSet) {
        this.friendSet = friendSet;
    }

    public String getGroupSet() {
        return groupSet;
    }

    public void setGroupSet(String groupSet) {
        this.groupSet = groupSet;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy