123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- namespace IMCS.CCS.Models.vo
- {
- public class UserListInput
- {
- public int PageSize { get; set; }
- public int PageNum { get; set; }
- public string LoginName { get; set; }
- public Dictionary<string, DateTime> Params { get; set; }
- }
- }
|