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.
38 lines
1.0 KiB
38 lines
1.0 KiB
using System;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using QMAPP.Entity;
|
|
using QMFrameWork.Data.Attributes;
|
|
|
|
namespace QMAPP.FJC.Entity.MesB9
|
|
{
|
|
[DBTable(TableName = "Mes_B9_M110")]
|
|
public class MesB9M110Entity : 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 = "m110dtm", DataType = DbType.String)]
|
|
public string m110dtm { get; set; }
|
|
|
|
[DBColumn(ColumnName = "ProdNo", DataType = DbType.String)]
|
|
public string ProdNo { get; set; }
|
|
|
|
[DBColumn(ColumnName = "assemblyline", DataType = DbType.String)]
|
|
public string assemblyline { get; set; }
|
|
|
|
[DBColumn(ColumnName = "ReadFlag", DataType = DbType.Int32)]
|
|
public int ReadFlag { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|