123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DllScan
- {
- /// <summary>
- /// zTree数据模型
- /// </summary>
- public class TreeModel
- {
- public int Id { get; set; }
- public string Name { get; set; }
- public bool Open { get; set; }
- public bool IsParent { get; set; }
- public IEnumerable<TreeModel> Children { get; set; }
- }
- public class JqGridModel<T>
- {
- public string Page { get; set; }
- public int Total { get; set; }
- public string records { get; set; }
- public IEnumerable<T> Rows { get; set; }
- // public UserData Userdata { get; set; }
- }
- public class TableRow
- {
- public string Id { get; set; }
- public IEnumerable<string> Cell { get; set; }
- }
- public class UserData
- {
- public int Total { get; set; }
- public string Name { get; set; } = "总记录数:";
- }
- }
|