# == Schema Information
#
# Table name: device_logs
#
#  id               :integer          not null, primary key
#  mac              :string(12)       not null
#  last_hwtime      :datetime
#  last_sys_time    :datetime
#  last_request_ip  :string(255)
#  created_at       :datetime         not null
#  updated_at       :datetime         not null
#  software_version :string(255)
#
class DeviceLog < ApplicationRecord
  # 设备时间日志
  # 拥有多个明细记录
  has_many :device_log_histories
end
