using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using QMAPP.Entity;
namespace QMAPP.FJC.Entity.ProductPetrospect
{
///
/// 作 用:产品档案数据模型
/// 作 者:王丹丹
/// 编写日期:2015年06月08日
///
public class ProductArchives : BaseEntity
{
///
///产品条码
///
public string ERMISCODE { get; set; }
//总成条码
public string MAINCODE { get; set; }
///
///工序类别
///
public string PROCESSTYPE { get; set; }
///
///零件类别
///
public string PRODUCTTYPE { get; set; }
///
///参数名称
///
public string PARAMETERNAME { get; set; }
///
///参数值
///
public string PARAMETERVALUE { get; set; }
///
///设备编号
///
public string MACHINECODDE { get; set; }
}
}