using System;
|
using SqlSugar;
|
|
namespace MES.Service.Modes
|
{
|
[SugarTable("MES_QAMFTP")]
|
public class MesQamftp
|
{
|
[SugarColumn(ColumnName = "ID")]
|
public decimal Id { get; set; }
|
|
[SugarColumn(ColumnName = "ITEM_NO")]
|
public string ItemNo { get; set; }
|
|
[SugarColumn(ColumnName = "FTYPE")]
|
public string Ftype { get; set; }
|
|
[SugarColumn(ColumnName = "FATTACH")]
|
public string Fattach { get; set; }
|
|
[SugarColumn(ColumnName = "FVERSION")]
|
public string Fversion { get; set; }
|
|
[SugarColumn(ColumnName = "FDATE")]
|
public string Fdate { get; set; }
|
|
[SugarColumn(ColumnName = "CREATE_BY")]
|
public string CreateBy { get; set; }
|
|
[SugarColumn(ColumnName = "CREATE_DATE")]
|
public string CreateDate { get; set; }
|
|
[SugarColumn(ColumnName = "COMPANY")]
|
public string Company { get; set; }
|
|
[SugarColumn(ColumnName = "FACTORY")]
|
public string Factory { get; set; }
|
|
[SugarColumn(ColumnName = "RELEASE_NO")]
|
public string ReleaseNo { get; set; }
|
|
[SugarColumn(ColumnName = "F_TYPE")]
|
public int? F_type { get; set; }
|
|
[SugarColumn(ColumnName = "LASTUPDATE_BY")]
|
public string LastupdateBy { get; set; }
|
|
[SugarColumn(ColumnName = "LASTUPDATE_DATE")]
|
public DateTime? LastupdateDate { get; set; }
|
|
[SugarColumn(ColumnName = "ITEM_ID")]
|
public decimal? ItemId { get; set; }
|
}
|
}
|