15 lines
384 B
Erlang
15 lines
384 B
Erlang
%%%-------------------------------------------------------------------
|
|
%%% @author anlicheng
|
|
%%% @copyright (C) 2025, <COMPANY>
|
|
%%% @doc
|
|
%%%
|
|
%%% @end
|
|
%%% Created : 07. 4月 2025 14:34
|
|
%%%-------------------------------------------------------------------
|
|
-author("anlicheng").
|
|
|
|
-record(device_token, {
|
|
user_id :: binary(),
|
|
token :: binary(),
|
|
timestamp = 0 :: integer()
|
|
}). |