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
3 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using QMFrameWork.Data.Attributes;
|
||
|
using System.Data;
|
||
|
using QMAPP.Entity;
|
||
|
|
||
|
namespace QMAPP.FJC.Entity.Operation
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 模块名称:Bom详细信息
|
||
|
/// 作 者:张松男
|
||
|
/// 编写日期:2021年03月17日
|
||
|
/// </summary>
|
||
|
[DBTable(TableName = "T_MD_PBOM")]
|
||
|
public class Bom : BaseEntity
|
||
|
{
|
||
|
///<summary>
|
||
|
///BOM项目主键
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 物料编号
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "PBOM_CODE", DataType = DbType.String)]
|
||
|
public string PBOM_CODE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
public string MATERIAL_CODE { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "PROPERTY_CODE", DataType = DbType.String)]
|
||
|
public string PROPERTY_CODE { get; set; }
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|