AV-VOIP 列表功能完成,新增界面整体搭建完成
This commit is contained in:
60
src/main/java/com/nis/domain/configuration/CfgIndexInfo.java
Normal file
60
src/main/java/com/nis/domain/configuration/CfgIndexInfo.java
Normal file
@@ -0,0 +1,60 @@
|
||||
/**
|
||||
*@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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user