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