61 lines
1.4 KiB
Java
61 lines
1.4 KiB
Java
/**
|
|
*@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<CfgIndexInfo> {
|
|
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private static final long serialVersionUID = 2796500715438264119L;
|
|
|
|
private List<AvVoipAccountCfg> voipAccounts;//Add表单使用
|
|
private List<AvVoipIpCfg> 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<AvVoipAccountCfg> getVoipAccounts() {
|
|
return voipAccounts;
|
|
}
|
|
public void setVoipAccounts(List<AvVoipAccountCfg> voipAccounts) {
|
|
this.voipAccounts = voipAccounts;
|
|
}
|
|
public AvVoipIpCfg getVoipIp() {
|
|
return voipIp;
|
|
}
|
|
public void setVoipIp(AvVoipIpCfg voipIp) {
|
|
this.voipIp = voipIp;
|
|
}
|
|
public void setVoipIps(List<AvVoipIpCfg> voipIps) {
|
|
this.voipIps = voipIps;
|
|
}
|
|
public List<AvVoipIpCfg> getVoipIps() {
|
|
return voipIps;
|
|
}
|
|
|
|
}
|