1.统计 界面和服务端的配置总量修改

This commit is contained in:
shangguanyanfei
2019-04-04 18:09:22 +08:00
parent af4491d739
commit c2faf2a2a3
5 changed files with 54 additions and 12 deletions

View File

@@ -39,7 +39,7 @@ public class SysUserWarnService extends BaseService{
page.setList(allList);
return page;
}
//根据serviceID和表名查询业务配置的数量
//查询总的记录数
public Integer getAllInfoCount(){
return sysUserWarnDao.getAllInfoCount();
@@ -69,4 +69,15 @@ public class SysUserWarnService extends BaseService{
return allSum;
}
//查询ASN IP 页面配置总量
public Integer getASNIPTotal(){
return sysUserWarnDao.getASNIPTotal();
}
//查询APP IP 页面配置总量
public Integer getAPPIPTotal(){
return sysUserWarnDao.getAPPIPTotal();
}
}