2
0

feat: add cdr schedule task

This commit is contained in:
caiyuchao
2024-12-10 11:07:17 +08:00
parent 95d4b02aad
commit b1848e3ab3
17 changed files with 277 additions and 30 deletions

View File

@@ -49,8 +49,8 @@ CREATE TABLE `u_cdr` (
`client_id` bigint(20) NULL DEFAULT NULL COMMENT 'Client ID',
`device_id` bigint(20) NULL DEFAULT NULL COMMENT 'Device ID',
`ssid` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT 'Wireless SSID name ',
`rx_rate` int(11) NULL DEFAULT NULL COMMENT 'tx rate ',
`tx_rate` int(11) NULL DEFAULT NULL COMMENT 'tx rate',
`rx_rate` bigint(20) NULL DEFAULT NULL COMMENT 'tx rate ',
`tx_rate` bigint(20) NULL DEFAULT NULL COMMENT 'tx rate',
`down_packet` bigint(20) NULL DEFAULT NULL COMMENT 'Number of downstream packets.\n',
`up_packet` bigint(20) NULL DEFAULT NULL COMMENT 'Number of upstream packets. ',
`traffic_down` bigint(20) NULL DEFAULT NULL COMMENT 'Downstream traffic (Byte)',