using Infrastructure.Domain; using System; using System.ComponentModel.DataAnnotations; namespace IoT.Shared.Application.Domain.Entities { [Display(Name = "场景命令")] [Scope] public class IoTSceneIoTCommand : BaseEntity { public Guid SceneId { get; set; } public Guid CommandId { get; set; } public IoTScene Scene { get; set; } public IoTCommand Command { get; set; } } }