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.
37 lines
1.1 KiB
37 lines
1.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using QMFrameWork.Data.Attributes;
|
|
using QMAPP.Entity;
|
|
using System.Data;
|
|
|
|
namespace QMAPP.MD.Entity
|
|
{
|
|
/// <summary>
|
|
/// 模块名称:工艺路线生产版本
|
|
/// 作 者:郭兆福
|
|
/// 编写日期:2017年05月18日
|
|
/// </summary>
|
|
[DBTable(TableName = "T_MD_PROCESS_ROUTE_VERSION")]
|
|
public class ProcessRouteVersion : BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工艺路线主键
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "PROCESS_ROUTE_PID", DataType = DbType.String)]
|
|
public string PROCESS_ROUTE_PID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 生产版本主键
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "PRODUCTION_VERSION_PID", DataType = DbType.String)]
|
|
public string PRODUCTION_VERSION_PID { get; set; }
|
|
}
|
|
}
|
|
|