package com.jiuqi.mobile.nigo.comeclose.manager.master; import com.jiuqi.mobile.nigo.comeclose.bean.SelectKey; public class SelectCollectionKey extends SelectKey { /** * @Fields serialVersionUID */ private static final long serialVersionUID = -8503827525163644301L; /** * 收藏维修点名称 */ private String name; /** * 添加人 */ private String addPersonGuid; /** * 收藏类型 */ private int typeOfCollection; /** * 收藏类型(用于多重收藏类型查询) */ private int[] types; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getAddPersonGuid() { return addPersonGuid; } public void setAddPersonGuid(String addPersonGuid) { this.addPersonGuid = addPersonGuid; } public int getTypeOfCollection() { return typeOfCollection; } public void setTypeOfCollection(int typeOfCollection) { this.typeOfCollection = typeOfCollection; } public int[] getTypes() { return types; } public void setTypes(int[] types) { this.types = types; } }