/** *@Title: CfgIndexInfo.java *@Package com.nis.domain.restful *@Description 索引公共表 *@author dell *@date 2018年5月17日 下午16:59:17 *@version 版本号 */ package com.nis.domain.configuration; import java.util.Date; import java.util.List; /** * @ClassName: CfgIndexInfo.java * @author (dell) * @date 2018年5月17日 下午16:59:17 * @version V1.0 */ public class CfgIndexInfo extends BaseCfg { /** * */ private static final long serialVersionUID = 2796500715438264119L; private List voipAccounts;//Add表单使用 private List voipIps; //Add表单使用 private AvVoipAccountCfg voipAccount;//Search使用 private AvVoipIpCfg voipIp;//Search使用 public AvVoipAccountCfg getVoipAccount() { return voipAccount; } public void setVoipAccount(AvVoipAccountCfg voipAccount) { this.voipAccount = voipAccount; } public List getVoipAccounts() { return voipAccounts; } public void setVoipAccounts(List voipAccounts) { this.voipAccounts = voipAccounts; } public AvVoipIpCfg getVoipIp() { return voipIp; } public void setVoipIp(AvVoipIpCfg voipIp) { this.voipIp = voipIp; } public void setVoipIps(List voipIps) { this.voipIps = voipIps; } public List getVoipIps() { return voipIps; } }