You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.1 KiB
49 lines
1.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using QMAPP.Entity;
|
|
|
|
namespace QMAPP.FJC.Entity.ProductPetrospect
|
|
{
|
|
/// <summary>
|
|
/// 作 用:产品档案数据模型
|
|
/// 作 者:王丹丹
|
|
/// 编写日期:2015年06月08日
|
|
///</summary>
|
|
public class ProductArchives : BaseEntity
|
|
{
|
|
///<summary>
|
|
///产品条码
|
|
///</summary>
|
|
public string ERMISCODE { get; set; }
|
|
|
|
//总成条码
|
|
public string MAINCODE { get; set; }
|
|
|
|
///<summary>
|
|
///工序类别
|
|
///</summary>
|
|
public string PROCESSTYPE { get; set; }
|
|
|
|
///<summary>
|
|
///零件类别
|
|
///</summary>
|
|
public string PRODUCTTYPE { get; set; }
|
|
|
|
///<summary>
|
|
///参数名称
|
|
///</summary>
|
|
public string PARAMETERNAME { get; set; }
|
|
|
|
///<summary>
|
|
///参数值
|
|
///</summary>
|
|
public string PARAMETERVALUE { get; set; }
|
|
|
|
///<summary>
|
|
///设备编号
|
|
///</summary>
|
|
public string MACHINECODDE { get; set; }
|
|
}
|
|
}
|
|
|