平安校园
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SummarySeach.cs 339 B

1 month ago
2 months ago
1 month ago
2 months ago
1 month ago
2 months ago
123456789101112131415
  1. using System.ComponentModel.DataAnnotations;
  2. namespace SafeCampus.Web.Core.Controllers.Application.Violation;
  3. public class SummarySeach
  4. {
  5. /// <summary>
  6. /// 搜索条件
  7. /// </summary>
  8. public SearchType? SearchType { get; set; }
  9. /// <summary>
  10. /// 人员id
  11. /// </summary>
  12. public string Id { get; set; }
  13. }