Files
RBMESAPICore/Models/Cloud/ResponseStatus.cs
yuyubohh e8494ba988 qqq
2025-09-09 22:41:29 +08:00

38 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace RB_MES_APICore.Models.Cloud
{
/// <summary>
/// 金蝶Cloud返回消息
/// </summary>
public class ResponseStatus
{
/// <summary>
/// 错误编号
/// </summary>
public string? ErrorCode { get; set; }
/// <summary>
/// 操作是否成功
/// </summary>
public string? IsSuccess { get; set; }
/// <summary>
/// 如果失败,具体错误描述
/// </summary>
public string? Errors { get; set; }
/// <summary>
/// 错误消息
/// </summary>
public string? Message { get; set; }
/// <summary>
/// 原始数据行号,如果接口参数启用了 BatchCount则 DIndex 返回的顺序不是所有数据的顺序,而是每批次中的顺序。
/// </summary>
public int? DIndex { get; set; }
/// <summary>
/// 返回的数据列表
/// </summary>
public object? SuccessEntitys { get; set; }
/// <summary>
/// 返回的
/// </summary>
public object? SuccessMessages { get; set; }
}
}