You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
862 B
29 lines
862 B
using Infrastructure.Domain;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Application.Domain.Entities
|
|
{
|
|
[Display(Name = "Íø¹Ü")]
|
|
public class Gateway : BaseEntity
|
|
{
|
|
public string Sn { get; set; }
|
|
public string Ip { get; set; }
|
|
|
|
//
|
|
public string Version { get; set; }
|
|
|
|
public string UserName { get; internal set; }
|
|
public string Password { get; internal set; }
|
|
public int DeviceCount { get; internal set; }
|
|
public int GroupCount { get; internal set; }
|
|
public int TimerCount { get; internal set; }
|
|
public int SceneCount { get; internal set; }
|
|
public int TaskCount { get; internal set; }
|
|
public string CompileVersion { get; internal set; }
|
|
|
|
//
|
|
public string NodeName { get; set; }
|
|
|
|
public bool Enable { get; set; }
|
|
}
|
|
} |