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.
45 lines
1.1 KiB
45 lines
1.1 KiB
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using QMFrameWork.Data.Attributes;
|
||
|
using System.ComponentModel;
|
||
|
using System.Data;
|
||
|
using QMAPP.Entity;
|
||
|
|
||
|
namespace QMAPP.MD.Entity
|
||
|
{
|
||
|
[DBTable(TableName = "T_PP_ORDERINDENTITY")]
|
||
|
public class OrderIndentity : BaseEntity
|
||
|
{
|
||
|
|
||
|
[Description("主键")]
|
||
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
[Description("")]
|
||
|
[DBColumn(ColumnName = "ORDER_TYPE", DataType = DbType.String)]
|
||
|
public string ORDER_TYPE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
[Description("")]
|
||
|
[DBColumn(ColumnName = "WORKCENTER", DataType = DbType.String)]
|
||
|
public string PROJECTCODE { get; set; }
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
[Description("")]
|
||
|
[DBColumn(ColumnName = "MATERIALTYPE", DataType = DbType.String)]
|
||
|
public string MATERIALTYPE { get; set; }
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|