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.
46 lines
1.2 KiB
46 lines
1.2 KiB
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using QMFrameWork.Data.Attributes;
|
|
using QMAPP.Entity;
|
|
|
|
namespace QMAPP.FJC.Entity.QT
|
|
{
|
|
/// </summary>
|
|
/// 模块名称:产品组成
|
|
/// 作 者:张鹏
|
|
/// 编写日期:2017年09月01日
|
|
/// </summary>
|
|
[DBTable(TableName = "T_QT_PRODUCT_STRUCTURE")]
|
|
public class ProductStructure : BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 过程码
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "PROCESS_CODE", DataType = DbType.String)]
|
|
public string PROCESS_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 产品主键
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "PRODUCT_PID", DataType = DbType.String)]
|
|
public string PRODUCT_PID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 零件主键
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "PART_PID", DataType = DbType.String)]
|
|
public string PART_PID { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|