using LB_SmartVisionCommon;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LB_SmartVision.CSV
{
///
/// 用于CSV映射的类
///
public class CsvRecordProductData
{
///
/// SKU 物料号或产品名称
///
public string ProductName { get; set; }
///
/// 产品SN号
///
public string ProductSN { get; set; }
///
/// 检测作业员
///
public string InspectionOperator { get; set; }
///
/// NG类型
///
public string NGType { get; set; }
///
/// NG大小
///
public string NGSize { get; set; }
///
/// 检测时间
///
public string DetectionTime { get; set; }
///
/// 检测相机
///
public string CameraInspection { get; set; }
}
}