This commit is contained in:
yuyubohh
2025-09-09 22:41:29 +08:00
commit e8494ba988
798 changed files with 252381 additions and 0 deletions

21
Models/BreakData.cs Normal file
View File

@@ -0,0 +1,21 @@
namespace RB_MES_API.Models
{
/// <summary>
/// 沃比API返回的对象
/// </summary>
public class BreakData
{
/// <summary>
/// 状态,True或False
/// </summary>
public bool Status { get; set; } = false;
/// <summary>
/// 错误消息,存在时
/// </summary>
public object Message { get; set; } = "";
/// <summary>
/// 存储有成功详情的类
/// </summary>
public object? DataSet { get; set; }
}
}