using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace MES.Service.Modes { /// /// 数据源导入 /// [SugarTable("LTS_LLJ")] public class LtsLlj { /// /// /// [SugarColumn(ColumnName="Id" )] public decimal? Id { get; set; } /// /// 审核标识 /// [SugarColumn(ColumnName="MODIFY1_FLAG" )] public decimal? Modify1Flag { get; set; } /// /// 送检批次 /// [SugarColumn(ColumnName="LOT_NO" )] public string LotNo { get; set; } /// /// 处理方法 /// [SugarColumn(ColumnName="FNG_HANDLE" )] public string FngHandle { get; set; } /// /// 物料版本 /// [SugarColumn(ColumnName="FVERSION" )] public decimal? Fversion { get; set; } /// /// 备注信息 /// [SugarColumn(ColumnName="LOT_NO1" )] public string LotNo1 { get; set; } /// /// 转换数量 /// [SugarColumn(ColumnName="FCOVERT_QTY" )] public string FcovertQty { get; set; } /// /// 检验结果 /// [SugarColumn(ColumnName="FCHECK_RESU" )] public string FcheckResu { get; set; } /// /// 供应商编码 /// [SugarColumn(ColumnName="SUPP_NO" )] public string SuppNo { get; set; } /// /// 检验单号 /// [SugarColumn(ColumnName="RELEASE_NO" )] public string ReleaseNo { get; set; } /// /// 采购数量 /// [SugarColumn(ColumnName="FBATCH_QTY" )] public string FbatchQty { get; set; } /// /// 物料编码 /// [SugarColumn(ColumnName="ITEM_NO" )] public string ItemNo { get; set; } /// /// 检验人员 /// [SugarColumn(ColumnName="FCHECK_BY" )] public string FcheckBy { get; set; } /// /// 不良描述 /// [SugarColumn(ColumnName="FNG_DESC" )] public string FngDesc { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName="CREATE_BY" )] public string CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName="CREATE_DATE" )] public string CreateDate { get; set; } /// /// 是否急料 /// [SugarColumn(ColumnName="URGENT_FLAG" )] public short? UrgentFlag { get; set; } /// /// 物料名称 /// [SugarColumn(ColumnName="ITEM_NAME" )] public string ItemName { get; set; } /// /// 检验类型 /// [SugarColumn(ColumnName="QATYPE" )] public string Qatype { get; set; } /// /// 检验日期 /// [SugarColumn(ColumnName="DATE_01" )] public string Date01 { get; set; } /// /// 供应商名称 /// [SugarColumn(ColumnName="SUPP_NAME" )] public string SuppName { get; set; } /// /// 物料规格 /// [SugarColumn(ColumnName="ITEM_MODEL" )] public string ItemModel { get; set; } /// /// 库存数量 /// [SugarColumn(ColumnName="KC_QTY" )] public decimal? KcQty { get; set; } /// /// 单据状态 /// [SugarColumn(ColumnName="STATUS" )] public string STATUS { get; set; } /// /// 委外标识(0:采购 、1:委外) /// [SugarColumn(ColumnName="F_TYPE" )] public int Ftype { get; set; } } }