添加项目文件。

This commit is contained in:
Administrator
2026-08-04 18:36:40 +08:00
parent 16fb9e4f5a
commit a2ecbc795d
616 changed files with 149853 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
using SqlSugar;
namespace JinYuan.Models
{
public class FDConfig
{
/// <summary>
/// 编号
/// </summary>
public int FdNum { get; set; }
/// <summary>
/// OK拉带类型1
/// </summary>
public string Grade1 { get; set; }
/// <summary>
/// OK拉带类型2
/// </summary>
public string Grade2 { get; set; }
/// <summary>
/// OK拉带类型3
/// </summary>
public string Grade3 { get; set; }
/// <summary>
/// 是否开启分档
/// </summary>
public bool IsFDActive { get; set; }
/// <summary>
///是否激活NG电池不分类排出
/// </summary>
//public bool IsNGActive { get; set; }
}
}