using System;
using SqlSugar;
using System.Linq;
using System.ComponentModel;
using System.Collections.Generic;
using Tiger.Model;
namespace Tiger.Model.Minsun
{
///
/// 实体:WmsIQCResult
///
[Description("Primary:Id")]
[Serializable]
[SugarTable("WmsIQCResult")]
public class WmsIQCResult : iDBEntity
{
#region 构造函数
///
/// 实体:WmsIQCResult
///
public WmsIQCResult() {}
#endregion
#region 公共属性
///
/// 主键
///
[SugarColumn(IsPrimaryKey = true)]
public string Id { get; set; }
///
///
///
public string IQCNo { get; set; }
///
///
///
public string ReceiptNo { get; set; }
///
///
///
public int ReceiptLine { get; set; }
///
///
///
public string OrderNo { get; set; }
///
///
///
public int OrderLine { get; set; }
///
///
///
public string MCode { get; set; }
///
///
///
public string IQCStatus { get; set; }
///
///
///
public double ReceiveQty { get; set; }
///
///
///
public string CheckStatus { get; set; }
///
///
///
public string InsType { get; set; }
///
///
///
public string CheckLevel { get; set; }
///
///
///
public string AQLLevel { get; set; }
///
///
///
public int SampleQty { get; set; }
///
///
///
public int NGQty { get; set; }
///
///
///
public string Type { get; set; }
///
///
///
public bool ConcessionStatus { get; set; }
///
///
///
public int ConcessionQty { get; set; }
///
///
///
public string ConcessionRemark { 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; }
#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
}