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