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.
35 lines
916 B
35 lines
916 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using QMFrameWork.Data.Attributes;
|
|
using System.Data;
|
|
|
|
namespace QMAPP.FJC.Entity.Operation
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[DBTable(TableName = "T_AW_MATERIALCODE", TimeStampColumn = "UPDATEDATE")]
|
|
public class MaterialCode
|
|
{
|
|
///<summary>
|
|
///主键
|
|
///</summary>
|
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
///<summary>
|
|
///设备类别
|
|
///</summary>
|
|
[DBColumn(ColumnName = "PRODUCT_TYPES", DataType = DbType.String)]
|
|
public string PRODUCT_TYPES { get; set; }
|
|
|
|
///<summary>
|
|
///物料号
|
|
///</summary>
|
|
[DBColumn(ColumnName = "MATERIAL_CODE", DataType = DbType.String)]
|
|
public string MATERIAL_CODE { get; set; }
|
|
|
|
}
|
|
}
|
|
|