using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.Repository.Domain
{
[SugarTable("lasa_gateway")]
public class LasaGateway
{
///
/// 主键
///
[SugarColumn(IsPrimaryKey = true)]
public string Id { get; set; }
///
/// 绑定状态
///
public int BindStatus { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// Did
///
public string Did { get; set; }
///
/// 网关编号
///
public string GatewayAccount { get; set; }
///
/// 网关sn
///
public string GatewaySn { get; set; }
///
/// 网关地址
///
public string MqttGateway { get; set; }
///
/// 网关密码
///
public string MqttPassword { get; set; }
///
/// 网关账号
///
public string MqttUserName { get; set; }
///
/// 组织id
///
public string OrgId { get; set; }
///
/// 更新时间
///
public DateTime UpdateTime { get; set; }
}
}