chore: 初始化平芝126KV总装线 WebApi

This commit is contained in:
yexingqiang
2026-06-08 17:19:25 +08:00
commit 437c251f58
126 changed files with 5439 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
namespace WebApi.Models
{
public class msgResHeader
{
/// <summary>
/// 返回结果 bool
/// </summary>
public bool Result
{
get;
set;
}
/// <summary>
/// 返回消息
/// </summary>
public string ErrMsg
{
get;
set;
}
/// <summary>
/// 返回结果集
/// </summary>
public object Data
{
get;
set;
}
}
}