using Infrastructure.Application; using System; using System.ComponentModel.DataAnnotations; namespace IoT.Shared.Application.Models { public class SearchDataModel : PagedListModel { [SelectList] [Display(Name = "节点")] public Guid? NodeId { get; set; } [SelectList] [Display(Name = "设备")] public Guid? DeviceId { get; set; } [Display(Name = "关键词")] public string Keyword { get; set; } } }