18 lines
450 B
Erlang
18 lines
450 B
Erlang
%%%-------------------------------------------------------------------
|
|
%%% @author anlicheng
|
|
%%% @copyright (C) 2025, <COMPANY>
|
|
%%% @doc
|
|
%%%
|
|
%%% @end
|
|
%%% Created : 20. 1月 2025 21:35
|
|
%%%-------------------------------------------------------------------
|
|
-author("anlicheng").
|
|
|
|
%% ip的使用信息
|
|
-record(client, {
|
|
client_id :: binary(),
|
|
mac :: binary(),
|
|
ip :: integer(),
|
|
%% 当前状态
|
|
status = normal :: normal | disabled
|
|
}). |