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