58 lines
1.2 KiB
C#
58 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Model
|
|
{
|
|
|
|
/// <summary>
|
|
/// 设备表含义
|
|
/// </summary>
|
|
[Tenant(1)]
|
|
[SugarTable("reflex_account")]
|
|
public class ReflexAccount
|
|
{
|
|
/// <summary>
|
|
/// Id
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
public int Id { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 设备ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fk_device_id")]
|
|
public int? FkDeviceId { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// FkTenantId
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fk_tenant_id")]
|
|
public int? FkTenantId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 表名
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "table_code")]
|
|
public string TableCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "table_name")]
|
|
public string TableName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Status
|
|
/// </summary>
|
|
public int? Status { get; set; }
|
|
|
|
}
|
|
|
|
}
|