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
{
///
/// 编号
///
public int FdNum { get; set; }
///
/// OK拉带类型1
///
public string OKLD1Type { get; set; }
///
/// OK拉带类型2
///
public string OKLD2Type { get; set; }
///
/// OK拉带类型3
///
public string OKLD3Type { get; set; }
///
/// OK拉带类型4
///
public string OKLD4Type { get; set; }
///
/// NG拉带类型5
///
public string NGLD5Type { get; set; }
///
/// NG拉带类型6
///
public string NGLD6Type { get; set; }
///
/// NG拉带类型7
///
public string NGLD7Type { get; set; }
///
/// 是否开启分档
///
public bool IsFDActive { get; set; }
///
///是否激活NG电池不分类排出
///
public bool IsNGActive { get; set; }
}
}