using Infrastructure.Application; using System; using System.ComponentModel.DataAnnotations; namespace IoT.Shared.Application.Models { public class SearchDeviceMode : PagedListModel { [SelectList] [Display(Name = "网关")] public Guid? NodeId { get; set; } [SelectList] [Display(Name = "分类")] public Guid? CategoryId { get; set; } [SelectList] [Display(Name = "产品")] public Guid? ProductId { get; set; } [Display(Name = "关键词")] public string Keyword { get; set; } } }