package com.jiuqi.mobile.nigo.comeclose.bean.app.coop; import com.jiuqi.mobile.nigo.comeclose.bean.NiGoBean; /** * * @author modi * */ public class CooperativeGroupBean extends NiGoBean { private String name; private String cooperativeGuid; private int type; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getCooperativeGuid() { return cooperativeGuid; } public void setCooperativeGuid(String cooperativeGuid) { this.cooperativeGuid = cooperativeGuid; } public int getType() { return type; } public void setType(int type) { this.type = type; } }