You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.1 KiB
C#
52 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
public class RulesEngineWebApiResult
|
|
{
|
|
/// <summary>
|
|
/// 是否成功 true=成功 false=失败
|
|
/// </summary>
|
|
public bool succ { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// 状态 0-成功
|
|
/// </summary>
|
|
public int status { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// 返回消息
|
|
/// </summary>
|
|
public string msg { get; set; }
|
|
|
|
/// <summary>
|
|
/// 总记录数
|
|
/// </summary>
|
|
public int total { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前页列表数据
|
|
/// </summary>
|
|
public object rows { get; set; }
|
|
|
|
/// <summary>
|
|
/// 合计信息
|
|
/// </summary>
|
|
public object summary { get; set; }
|
|
|
|
/// <summary>
|
|
/// 扩展信息
|
|
/// </summary>
|
|
public object extra { get; set; }
|
|
|
|
/// <summary>
|
|
/// 扩展信息2
|
|
/// </summary>
|
|
public object extra2 { get; set; }
|
|
}
|
|
}
|