using SqlSugar; namespace MES.Service.Modes; /// /// 数据源导入 /// [SugarTable("V_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 = "ITEM_ID")] public decimal ItemId { 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 DateTime? CreateDate { get; set; } [SugarColumn(ColumnName = "USER_NO")] public string? UserNo { get; set; } [SugarColumn(ColumnName = "MODIFY1_BY")] public string? Modify1By { get; set; } [SugarColumn(ColumnName = "MODIFY1_DATE")] public DateTime? Modify1Date { get; set; } [SugarColumn(ColumnName = "IQC_DATE")] public DateTime? IqcDate { 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 = "DEPARTMENTID")] public string? DEPARTMENTID { get; set; } /// /// 组织名称 /// [SugarColumn(ColumnName = "DEPARTMENTNAME")] public string? DEPARTMENTNAME { 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; } [SugarColumn(IsIgnore = true)] public string? UserName { get; set; } /// /// 物料标识(0:非首次、1:首次) /// [SugarColumn(IsIgnore = true)] public int? FIRST { get; set; } /// /// 创建人 /// [SugarColumn(IsIgnore = true)] public string? CreateUserName { get; set; } /// /// 上次不良描述 /// [SugarColumn(IsIgnore = true)] public string? NewFngDesc { get; set; } /// /// 紧急放行标识 /// public int EMERGENCY { get; set; } }