iot_cloud/apps/iot/include/domain_model.hrl
2026-05-30 15:25:40 +08:00

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()
}).