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.
47 lines
1.4 KiB
47 lines
1.4 KiB
using System;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using QMAPP.Entity;
|
|
using QMFrameWork.Data.Attributes;
|
|
|
|
namespace QMAPP.FJC.Entity.MesB9
|
|
{
|
|
[DBTable(TableName = "Mes_B4")]
|
|
public class MesB4Entity : BaseEntity
|
|
{
|
|
[DBColumn(ColumnName = "seq", DataType = DbType.String, IsKey = true)]
|
|
public string seq { get; set; }
|
|
|
|
[DBColumn(ColumnName = "kin", DataType = DbType.String)]
|
|
public string kin { get; set; }
|
|
|
|
[DBColumn(ColumnName = "vin", DataType = DbType.String)]
|
|
public string vin { get; set; }
|
|
|
|
[DBColumn(ColumnName = "m100dtm", DataType = DbType.String)]
|
|
public string m100dtm { get; set; }
|
|
|
|
[DBColumn(ColumnName = "assemblyline", DataType = DbType.String)]
|
|
public string assemblyline { get; set; }
|
|
|
|
[DBColumn(ColumnName = "ProdNo1", DataType = DbType.String)]
|
|
public string ProdNo1 { get; set; }
|
|
|
|
[DBColumn(ColumnName = "ProdNo2", DataType = DbType.String)]
|
|
public string ProdNo2 { get; set; }
|
|
|
|
[DBColumn(ColumnName = "ProdNo3", DataType = DbType.String)]
|
|
public string ProdNo3 { get; set; }
|
|
|
|
[DBColumn(ColumnName = "ProdNo4", DataType = DbType.String)]
|
|
public string ProdNo4 { get; set; }
|
|
|
|
[DBColumn(ColumnName = "ReadFlag", DataType = DbType.Int32)]
|
|
public int ReadFlag { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|