AV-VOIP 列表功能完成,新增界面整体搭建完成

This commit is contained in:
duandongmei
2018-05-22 17:30:52 +08:00
parent c6a9ac126d
commit b87cb3ca26
13 changed files with 1776 additions and 17 deletions

View File

@@ -0,0 +1,15 @@
package com.nis.domain.configuration;
/**
* @ClassName: AvVoipAccountCfg.java
* @Description: TODO
* @author (dell)
* @date 2018年2月6日 上午8:18:55
* @version V1.0
*/
public class AvVoipAccountCfg extends ComplexkeywordCfg{
private static final long serialVersionUID = -7398698517584394431L;
}

View File

@@ -0,0 +1,19 @@
package com.nis.domain.configuration;
/**
* @ClassName: AvVoipIpCfg.java
* @Description: 音视频VOIP
* @author (dell)
* @date 2018年2月6日 上午8:29:26
* @version V1.0
*/
public class AvVoipIpCfg extends BaseIpCfg {
/**
*
*/
private static final long serialVersionUID = -942354218504312548L;
}

View 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;
}
}

View File

@@ -38,7 +38,7 @@ public class ComplexkeywordCfg extends BaseCfg<ComplexkeywordCfg>{
*/
@Expose
@SerializedName("keywords")
protected String keywords;
protected String cfgKeywords;
protected String keywordsShowName;
/**
* 表达式类型
@@ -72,19 +72,11 @@ public class ComplexkeywordCfg extends BaseCfg<ComplexkeywordCfg>{
public void setDistrict(String district) {
this.district = district;
}
/**
* keywords
* @return keywords
*/
public String getKeywords() {
return keywords;
public String getCfgKeywords() {
return cfgKeywords;
}
/**
* @param keywords the keywords to set
*/
public void setKeywords(String keywords) {
this.keywords = keywords;
public void setCfgKeywords(String cfgKeywords) {
this.cfgKeywords = cfgKeywords;
}
/**
* exprType