ASN定时计算v4和v6的IP个数;

界面展示ASNIPv4和v6数
This commit is contained in:
duandongmei
2019-01-26 19:41:58 +06:00
parent f90ef5ab85
commit 96df029f43
15 changed files with 1017 additions and 5 deletions

View File

@@ -36,4 +36,6 @@ public interface AsnGroupInfoDao extends CrudDao<AsnGroupInfo> {
void deleteAll();
void insertWithId(AsnGroupInfo asnGroupInfo);
void insertWithoutId(AsnGroupInfo asnGroupInfo);
void updateIpNum(@Param("v4Num")long v4Num,@Param("v6Num")long v6Num,@Param("groupId")Integer groupId);
List<Object[]> getASNIPNum(@Param("asnNo")Integer asnNo);
}