|
123456789101112131415 |
- using System.ComponentModel.DataAnnotations;
-
- namespace SafeCampus.Web.Core.Controllers.Application.Violation;
-
- public class SummarySeach
- {
- /// <summary>
- /// 搜索条件
- /// </summary>
- public SearchType? SearchType { get; set; }
- /// <summary>
- /// 人员id
- /// </summary>
- public string Id { get; set; }
- }
|