UserListInput.cs 327 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. namespace IMCS.CCS.Models.vo
  4. {
  5. public class UserListInput
  6. {
  7. public int PageSize { get; set; }
  8. public int PageNum { get; set; }
  9. public string LoginName { get; set; }
  10. public Dictionary<string, DateTime> Params { get; set; }
  11. }
  12. }