Files
Web_IoTBase_Sever_Prod/MySQLAccess/PGModels/EmqxLogininfo.cs
2025-12-11 14:04:39 +08:00

48 lines
962 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
namespace MySQLAccess.PGModels;
public partial class EmqxLogininfo
{
/// <summary>
/// 主键ID
/// </summary>
public int Id { get; set; }
/// <summary>
/// 用户名
/// </summary>
public string? UserName { get; set; }
/// <summary>
/// 密码
/// </summary>
public string? PassWord { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? CreateTime { get; set; }
/// <summary>
/// 创建时间Unix时间戳
/// </summary>
public long? CreateTimeUnix { get; set; }
/// <summary>
/// 更新时间
/// </summary>
public DateTime? UpdateTime { get; set; }
/// <summary>
/// 更新时间Unix时间戳
/// </summary>
public long? UpdateTimeUnix { get; set; }
/// <summary>
/// 设备UUID
/// </summary>
public string? DeviceUuid { get; set; }
}