12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace wispro.sp.share
- {
- public class QueryFilter
- {
- public int pageIndex { get; set; }
- public int pageSize { get; set; }
- public string PersonName { get; set; }
- public int? Year { get; set; }
- public int? Month { get; set; }
-
- }
- }
|