12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Ant.Service.Common.ViewModel
- {
-
-
-
-
- public class LeftMenu
- {
-
-
-
- public string ModuleID { get; set; }
-
-
-
- public string ModuleName { get; set; }
-
-
-
- public string ModuleIcon { get; set; }
-
-
-
- public string ModuleUrl { get; set; }
-
-
-
- public IList<LeftMenu> Children { get; set; }
- }
-
-
-
-
- public class PagingQueries
- {
-
-
-
- public int pageIndex { get; set; }
-
-
-
- public int pageSize { get; set; }
-
-
-
-
-
-
- public string whereStr { get; set; }
-
-
-
- public string orderStr { get; set; }
- }
- }
|