using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_XinWei.Commons.Dto.Open
{
public class DeviceInfoDto
{
///
/// Id
///
public int? Id { get; set; }
///
/// Type (1平板2跳绳 3中长跑 4短跑 5敏捷 6坐位体前屈 7仰卧起坐 8引体向上 9立定跳远 10实心球 11排球 12游泳 13手环 100一体机)
///
public double? Type { get; set; }
///
/// 设备型号
///
public string DeviceType { get; set; }
///
/// 设备序列号
///
public string DeviceSerial { get; set; }
///
/// 设备mac地址
///
public string DeviceMac { get; set; }
///
/// 设备imei地址
///
public string DeviceImei { get; set; }
///
/// AI摄像机IP地址,多个ip用,隔开
///
public string CameraIp { get; set; }
///
/// 抢跑ip(短跑)
///
public string GunJumpingIp { get; set; }
///
/// 是否是EAI100摄像头
///
public bool? Eai100Flag { get; set; }
///
/// 组织ID
///
public int? OrgId { get; set; }
///
/// 组织名称
///
public string OrgName { get; set; }
///
/// 用户ID
///
public int? UserId { get; set; }
///
/// 用户名称
///
public string UserName { get; set; }
///
/// 软件版本
///
public string SoftwareVer { get; set; }
///
/// 摄像头序列号、版本信息
///
public string CameraInfo { get; set; }
///
/// 硬件版本
///
public string HardwareVer { get; set; }
///
/// 应用时间
///
public string DeployTime { get; set; }
///
/// 最后登录时间
///
public string LastLoginTime { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 授权状态(0无效 1有效)
///
public int? State { get; set; }
///
/// 状态(0无效 1有效)
///
public int? Status { get; set; }
///
/// 创建时间
///
public string CreateTime { get; set; }
///
/// 创建人
///
public string CreateBy { get; set; }
///
/// 修改时间
///
public string UpdateTime { get; set; }
///
/// 修改人
///
public string UpdateBy { get; set; }
///
/// 学校人脸的相似度(80-99之间的整数)
///
public int? SimilarNumber { get; set; }
}
}