using System;
using SqlSugar;
using System.Linq;
using System.ComponentModel;
using System.Collections.Generic;
using Tiger.Model;
namespace Tiger.Model.Minsun
{
///
/// 实体:WMS_IQC_H
///
[Description("Primary:Id")]
[Serializable]
[SugarTable("WMS_IQC_H")]
public class WMS_IQC_H : iDBEntity
{
#region 构造函数
///
/// 实体:WMS_IQC_H
///
public WMS_IQC_H() {}
#endregion
#region 公共属性
///
/// 主键
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
///
///
///
public string BILLCODE { get; set; }
///
///
///
public int SOURCETYPE { get; set; }
///
///
///
public string SOURCECODE { get; set; }
///
///
///
public int SOURCELINE { get; set; }
///
///
///
public int QCTIMES { get; set; }
///
///
///
public int QCSTATUS { get; set; }
///
///
///
public int QCRESULT { get; set; }
///
///
///
public int QCREVIEW { get; set; }
///
///
///
public decimal REVIEWQTY { get; set; }
///
///
///
public int QCLEVEL { get; set; }
///
///
///
public string MATERIALCODE { get; set; }
///
///
///
public string MEASURE { get; set; }
///
///
///
public string STRICTLEVEL { get; set; }
///
///
///
public string LEVELCODE { get; set; }
///
///
///
public string AQL { get; set; }
///
///
///
public decimal SAMPLEQTY { get; set; }
///
///
///
public decimal SAMPLEPASSQTY { get; set; }
///
///
///
public decimal SAMPLENGQTY { get; set; }
///
///
///
public decimal BEGINQTY { get; set; }
///
///
///
public decimal ENDQTY { get; set; }
///
///
///
public decimal FATALQTY { get; set; }
///
///
///
public decimal SERIOUSQTY { get; set; }
///
///
///
public decimal COMMONLYQTY { get; set; }
///
///
///
public decimal SLIGHTQTY { get; set; }
///
///
///
public decimal QCQTY { get; set; }
///
///
///
public decimal RECEIVEQTY { get; set; }
///
///
///
public decimal REJECTQTY { get; set; }
///
///
///
public decimal INSTOCKQTY { get; set; }
///
///
///
public string REMARK { get; set; }
///
///
///
public DateTime LastModificationTime { get; set; } = DateTime.MinValue;
///
///
///
public long LastModifierUserId { get; set; }
///
///
///
public DateTime CreationTime { get; set; } = DateTime.MinValue;
///
///
///
public long CreatorUserId { get; set; }
///
///
///
public decimal SCRAPQTY { get; set; }
///
///
///
public string ERP_BILL_CODE { get; set; }
///
///
///
public string PONO { get; set; } = "";
///
///
///
public int POLINE { get; set; } = 0;
#endregion
#region 虚拟属性
/*例子
[SugarColumn(IsIgnore = true)]
public string FieldName { get; set; }
*/
#endregion
#region 枚举变量
/*例子
public enum FieldNames
{
[Description("枚举描述0")]
Enum0,
[Description("枚举描述1")]
Enum1,
}
*/
#endregion
#region 公共方法
#endregion
}//endClass
}