using System;
using System.Collections.Generic;
namespace MySQLAccess.PGModels;
public partial class Deviceinfo
{
///
/// 客户端ID(主键)
///
public long ClientId { get; set; }
///
/// 机型类型
///
public int? MachineType { get; set; }
///
/// 设备唯一标识
///
public string? Uuid { get; set; }
///
/// 订单号
///
public string? OrderNo { get; set; }
///
/// ProductID
///
public int? ProductId { get; set; }
///
/// 设备名称
///
public string? DeviceName { get; set; }
///
/// 设备密钥
///
public string? SecretKey { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 创建时间(Unix时间戳)
///
public long? CreateTimeUnix { get; set; }
///
/// 更新时间
///
public DateTime? UpdateTime { get; set; }
///
/// 更新时间(Unix时间戳)
///
public long? UpdateTimeUnix { get; set; }
///
/// 酒店代码
///
public int? HotelCode { get; set; }
///
/// 备注信息
///
public string? Remark { get; set; }
///
/// Excel文件名
///
public string? ExcelFileName { get; set; }
///
/// Excel批次标记
///
public long? ExcelBatchFlag { get; set; }
///
/// 客户端状态(0未使用,1已分配,2已激活,3已注销)
///
public int? ClientStatus { get; set; }
///
/// 是否删除标记
///
public bool? IsDelete { get; set; }
///
/// 厂牌ID
///
public int? Brandld { get; set; }
///
/// 设备UUID
///
public string? McuUuid { get; set; }
}