This commit is contained in:
2025-10-29 11:42:58 +08:00
parent 7f6f84cd0e
commit a178c3550e
190 changed files with 81361 additions and 92 deletions

View File

@@ -0,0 +1,35 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FATrace.Model
{
/// <summary>
/// 原料控件信息
/// </summary>
public class RawCtrInfo
{
/// <summary>
/// 原料名称
/// </summary>
public string? RawName { get; set; }
/// <summary>
/// 原料编码
/// </summary>
public string? RawCode { get; set; }
/// <summary>
/// 原料来源
/// </summary>
public RawSource RawSource { get; set; }
/// <summary>
/// 控件名称
/// </summary>
public string? BtnControlName { get; set; }
}
}