package com.partynetwork.iparty.info; public class ThemeInfo { // 主类别:1 i分享;2 iChoose;3 iParty private int themeType; // 主题名称 private String themeName; /** * @return themeType */ public int getThemeType() { return themeType; } /** * @param themeType 要设置的 themeType */ public void setThemeType(int themeType) { this.themeType = themeType; } /** * @return themeName */ public String getThemeName() { return themeName; } /** * @param themeName 要设置的 themeName */ public void setThemeName(String themeName) { this.themeName = themeName; } }