using Infrastructure.Application; using System.ComponentModel.DataAnnotations; namespace IoT.Shared.Application.Models { public class SearchLiveRecordModel : PagedListModel { [SelectList] [Display(Name = "摄像头")] public string DeviceNumber { get; set; } [Display(Name = "关键词")] public string Keyword { get; set; } } }