天津投入产出系统后端
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.
 
 
 
 
 
 

40 lines
1.0 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.FJC.Entity.MD
{
/// </summary>
/// 模块名称:物料类型信息
/// 作 者:张鹏
/// 编写日期:2017年09月08日
/// </summary>
[DBTable(TableName = "T_MD_MATERIAL_CLASS")]
public class MaterialClass : BaseEntity
{
/// <summary>
/// 主键
/// </summary>
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
public string PID { get; set; }
public string MATERIAL_TYPE_CODE { get; set; }
public string MATERIAL_TYPE_NAME { get; set; }
public string MATERIAL_ATTRIBUTE { get; set; }
public string LAYER_NUM { get; set; }
public string SEQ_NUM { get; set; }
public string UP_MATERIAL_TYPE_CODE { get; set; }
public string REMARK { get; set; }
}
}