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.
iot/projects/Application/Domain/IoTCenter/BuildingIoTGateway.cs

18 lines
529 B

using Infrastructure.Domain;
using System;
using System.ComponentModel.DataAnnotations;
namespace Application.Domain.Entities
{
[Display(Name = "建筑网关")]
[Scope(ScopeAttribute.PlatformAll | ScopeAttribute.OrganAll)]
[Group("物联管控", "IoTCenter")]
public class BuildingIoTGateway : BaseEntity
{
public Guid BuildingId { get; set; }
public Guid IoTGatewayId { get; set; }
public Building Building { get; set; }
public IoTGateway IoTGateway { get; set; }
}
}