mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-18 17:48:01 +08:00
调整流程详情显示效果
添加DataGrid数据格式
This commit is contained in:
@@ -91,7 +91,6 @@
|
||||
<Compile Include="Filter.cs" />
|
||||
<Compile Include="GenerateId.cs" />
|
||||
<Compile Include="HttpHelper.cs" />
|
||||
<Compile Include="JQData.cs" />
|
||||
<Compile Include="JsonConverter.cs" />
|
||||
<Compile Include="JsonHelper.cs" />
|
||||
<Compile Include="LogHelper.cs" />
|
||||
|
@@ -1,39 +0,0 @@
|
||||
// ***********************************************************************
|
||||
// Assembly : FundationAdmin
|
||||
// Author : yubaolee
|
||||
// Created : 03-09-2016
|
||||
//
|
||||
// Last Modified By : yubaolee
|
||||
// Last Modified On : 03-09-2016
|
||||
// ***********************************************************************
|
||||
// <copyright file="JqData.cs" company="Microsoft">
|
||||
// 版权所有(C) Microsoft 2015
|
||||
// </copyright>
|
||||
// <summary>jqGrid的数据格式</summary>
|
||||
// ***********************************************************************
|
||||
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Entity
|
||||
{
|
||||
/// <summary>
|
||||
/// jqGrid的返回值
|
||||
/// </summary>
|
||||
public class JqData
|
||||
{
|
||||
/// <summary>
|
||||
/// 页码
|
||||
/// </summary>
|
||||
public int page;
|
||||
/// <summary>
|
||||
/// 总页数
|
||||
/// </summary>
|
||||
public int total;
|
||||
/// <summary>
|
||||
/// 总记录条数
|
||||
/// </summary>
|
||||
public int records;
|
||||
|
||||
public IEnumerable<object> rows;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user