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

pro.shuangxi.pojo.GroupInfo Maven / Gradle / Ivy

package pro.shuangxi.pojo;

//群信息
public class GroupInfo {
    //群号id
    private String groupCode;
    //群名name
    private String name;
    //群图片avatarUrl
    private String icon;
    //群主owner
    private MemberInfo owner;
    //是否被禁言
    private int isMuted;

        public String getGroupCode() {
                return groupCode;
        }

        public GroupInfo setGroupCode(String groupCode) {
                this.groupCode = groupCode;
                return this;
        }

        public String getName() {
                return name;
        }

        public GroupInfo setName(String name) {
                this.name = name;
                return this;
        }

        public String getIcon() {
                return icon;
        }

        public GroupInfo setIcon(String icon) {
                this.icon = icon;
                return this;
        }

        public MemberInfo getOwner() {
                return owner;
        }

        public GroupInfo setOwner(MemberInfo owner) {
                this.owner = owner;
                return this;
        }


        public int getIsMuted() {
                return isMuted;
        }

        public GroupInfo setIsMuted(int isMuted) {
                this.isMuted = isMuted;
                return this;
        }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy