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.
53 lines
1.4 KiB
53 lines
1.4 KiB
3 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using QMFrameWork.Data.Attributes;
|
||
|
using QMAPP.Entity;
|
||
|
using System.ComponentModel;
|
||
|
using System.Data;
|
||
|
|
||
|
namespace QMAPP.FJC.Entity.Basic
|
||
|
{
|
||
|
/// </summary>
|
||
|
/// 模块名称:配置表
|
||
|
/// 作 者:张松男
|
||
|
/// 编写日期:2021年05月14日
|
||
|
/// </summary>
|
||
|
[DBTable(TableName = "T_MD_MaterialBomConfig_QD")]
|
||
|
public class MaterialBomConfig : BaseEntity
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 主键
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 物料号
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "Material_Code", DataType = DbType.String)]
|
||
|
public string Material_Code { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 序号
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "Product_Code", DataType = DbType.Int32)]
|
||
|
public string Product_Code { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工位
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "Workloc", DataType = DbType.String)]
|
||
|
public string Workloc { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 物料号
|
||
|
/// </summary>
|
||
|
[DBColumn(ColumnName = "Material_Name", DataType = DbType.String)]
|
||
|
public string Material_Name { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|