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

48 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_M110")]
public class MesB4M110Entity : 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 = "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; }
}
}