using SqlSugar;
namespace MES.Service.Models;
///
/// IPQC巡检视图实体类
///
[SugarTable("V_IPQC_XJ")]
public class VIpqcXj
{
///
/// 主键
///
[SugarColumn(ColumnName = "guid")]
public string Guid { get; set; }
///
/// 提交标识
///
[SugarColumn(ColumnName = "fsubmit")]
public int? FSubmit { get; set; }
///
/// 修改标志
///
[SugarColumn(ColumnName = "MODIFY1_FLAG")]
public string 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 string 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 = "RELEASE_NO")]
public string ReleaseNo { get; set; }
///
/// 单号
///
[SugarColumn(ColumnName = "DAA001")]
public string Daa001 { 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; }
///
/// DAA013
///
[SugarColumn(ColumnName = "DAA013")]
public string Daa013 { get; set; }
///
/// sj_xt
///
[SugarColumn(ColumnName = "sj_xt")]
public string SjXt { get; set; }
///
/// 部门名称
///
[SugarColumn(ColumnName = "departmentname")]
public string DepartmentName { get; set; }
///
/// 名称
///
[SugarColumn(ColumnName = "name")]
public string xtName { get; set; }
///
/// 项目名称
///
[SugarColumn(ColumnName = "ITEM_NAME")]
public string ItemName { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "remarks")]
public string Remarks { get; set; }
///
/// 检查日期
///
[SugarColumn(ColumnName = "DATE_01")]
public string Date01 { get; set; }
///
/// 产品型号
///
[SugarColumn(ColumnName = "ITEM_MODEL")]
public string ItemModel { get; set; }
///
/// 创建日期
///
[SugarColumn(ColumnName = "CREATE_DATE")]
public string CreateDate { get; set; }
///
/// 产线id
///
[SugarColumn(ColumnName = "line_id")]
public string lineId { get; set; }
///
/// 时间段
///
[SugarColumn(ColumnName = "check_time_slot")]
public string checkTimeSlot { get; set; }
}