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.
55 lines
2.1 KiB
55 lines
2.1 KiB
4 years ago
|
using System;
|
||
|
using System.Data;
|
||
|
using QMAPP.Entity;
|
||
|
using QMFrameWork.Data.Attributes;
|
||
|
|
||
|
namespace QMAPP.FJC.Entity.QdFis
|
||
|
{
|
||
|
[DBTable(TableName = "T_MD_FISMAP")]
|
||
|
public class FISMap : BaseEntity
|
||
|
{
|
||
|
//PID
|
||
|
[DBColumn(ColumnName = "PID", DataType = DbType.String)]
|
||
|
public string PID { get; set; }
|
||
|
//CarModel
|
||
|
[DBColumn(ColumnName = "CarModel", DataType = DbType.String)]
|
||
|
public string CarModel { get; set; }
|
||
|
//总成模块(左前)
|
||
|
[DBColumn(ColumnName = "ModulFL", DataType = DbType.String)]
|
||
|
public string ModulFL { get; set; }
|
||
|
//总成模块(右前)
|
||
|
[DBColumn(ColumnName = "ModulFR", DataType = DbType.String)]
|
||
|
public string ModulFR { get; set; }
|
||
|
//总成模块(左后)
|
||
|
[DBColumn(ColumnName = "ModulRL", DataType = DbType.String)]
|
||
|
public string ModulRL { get; set; }
|
||
|
//总成模块(右后)
|
||
|
[DBColumn(ColumnName = "ModulRR", DataType = DbType.String)]
|
||
|
public string ModulRR { get; set; }
|
||
|
//选装包模块
|
||
|
[DBColumn(ColumnName = "Modules", DataType = DbType.String)]
|
||
|
public string Modules { get; set; }
|
||
|
//总成描述
|
||
|
[DBColumn(ColumnName = "Description", DataType = DbType.String)]
|
||
|
public string Description { get; set; }
|
||
|
//MES总成物料号(左前)
|
||
|
[DBColumn(ColumnName = "DPMaterial_LF", DataType = DbType.String)]
|
||
|
public string DPMaterial_LF { get; set; }
|
||
|
//MES总成物料号(左后)
|
||
|
[DBColumn(ColumnName = "DPMaterial_LR", DataType = DbType.String)]
|
||
|
public string DPMaterial_LR { get; set; }
|
||
|
//MES总成物料号(右前)
|
||
|
[DBColumn(ColumnName = "DPMaterial_RF", DataType = DbType.String)]
|
||
|
public string DPMaterial_RF { get; set; }
|
||
|
//MES总成物料号(右后)
|
||
|
[DBColumn(ColumnName = "DPMaterial_RR", DataType = DbType.String)]
|
||
|
public string DPMaterial_RR { get; set; }
|
||
|
//创建时间
|
||
|
[DBColumn(ColumnName = "CreateDate", DataType = DbType.DateTime)]
|
||
|
public DateTime CreateDate { get; set; }
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|