StableVersion4.3/HL_FristAidPlatform_ChestPa.../HttpClient/RetutnModel.cs

33 lines
709 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System.Collections.Generic;
namespace HL_FristAidPlatform_ChestPain_Interface_CCPC
{
/// <summary>
/// 返回消息
/// </summary>
public class RetutnModel
{
/// <summary>
/// 返回码
/// 200成功
/// 500失败
/// </summary>
public string ResultCode { get; set; }
/// <summary>
/// 消息
/// </summary>
public string Message { get; set; }
/// <summary>
/// 错误消息
/// </summary>
public string Error { get; set; }
/// <summary>
/// 数据
/// </summary>
public Dictionary<string, string> Data { get; set; }
}
}