21 lines
457 B
Erlang
21 lines
457 B
Erlang
%%%-------------------------------------------------------------------
|
|
%%% @author Codex
|
|
%%% @doc
|
|
%%% 领域模型定义
|
|
%%% @end
|
|
%%%-------------------------------------------------------------------
|
|
|
|
-record(host_info, {
|
|
id :: integer(),
|
|
uuid :: binary(),
|
|
authorize_status :: integer(),
|
|
status :: integer()
|
|
}).
|
|
|
|
-record(device_info, {
|
|
id :: integer(),
|
|
host_id :: integer(),
|
|
device_uuid :: binary(),
|
|
status :: integer()
|
|
}).
|