251029
This commit is contained in:
35
FATrace.Model/RawCtrInfo.cs
Normal file
35
FATrace.Model/RawCtrInfo.cs
Normal 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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user