58 lines
1.4 KiB
C#
58 lines
1.4 KiB
C#
using System;
|
|||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
using System.Windows.Forms;
|
||
|
|
|
||
|
|
namespace JinYuan.Models
|
||
|
|
{
|
||
|
|
public class FDConfig
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 编号
|
||
|
|
/// </summary>
|
||
|
|
|
||
|
|
public int FdNum { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// OK拉带类型1
|
||
|
|
/// </summary>
|
||
|
|
public string OKLD1Type { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// OK拉带类型2
|
||
|
|
/// </summary>
|
||
|
|
public string OKLD2Type { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// OK拉带类型3
|
||
|
|
/// </summary>
|
||
|
|
public string OKLD3Type { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// OK拉带类型4
|
||
|
|
/// </summary>
|
||
|
|
public string OKLD4Type { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// NG拉带类型5
|
||
|
|
/// </summary>
|
||
|
|
public string NGLD5Type { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// NG拉带类型6
|
||
|
|
/// </summary>
|
||
|
|
public string NGLD6Type { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// NG拉带类型7
|
||
|
|
/// </summary>
|
||
|
|
public string NGLD7Type { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// 是否开启分档
|
||
|
|
/// </summary>
|
||
|
|
public bool IsFDActive { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
///是否激活NG电池不分类排出
|
||
|
|
/// </summary>
|
||
|
|
|
||
|
|
public bool IsNGActive { get; set; }
|
||
|
|
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|