You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.1 KiB
84 lines
2.1 KiB
#region 引用命名
|
|
using ChangKeTec.Wms.Models.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
#endregion
|
|
|
|
namespace ChangKeTec.Wms.Models.Wms
|
|
{
|
|
public class CqbmptFilterInfo
|
|
{
|
|
public DateTime ReciveBegin { get; set; }
|
|
|
|
public DateTime ReceiveEnd { get; set; }
|
|
|
|
public EnumCqbmptProcess Process { get; set; }
|
|
|
|
//public EnumCqbmptCurState Phase { get; set; }
|
|
|
|
public DateTime ReviewBegin { get; set; }
|
|
|
|
public DateTime ReviewEnd { get; set; }
|
|
|
|
public decimal Qty { get; set; }
|
|
|
|
public List<string> ReceiverList { get; set; } = new List<string>();
|
|
|
|
public List<string> ReviewerList { get; set; } = new List<string>();
|
|
|
|
public List<string> ReasonList { get; set; } = new List<string>();
|
|
|
|
/// <summary>
|
|
/// 零件状态
|
|
/// </summary>
|
|
public List<EnumCqbmptPartType> PartStateList { get; set; } = new List<EnumCqbmptPartType>();
|
|
|
|
/// <summary>
|
|
/// 评审类型
|
|
/// </summary>
|
|
//public List<EnumCqbmptReviewType> ReviewTypeList { get; set; } = new List<EnumCqbmptReviewType>();
|
|
|
|
/// <summary>
|
|
/// 评审结果
|
|
/// </summary>
|
|
//public List<EnumReviewState> ReviewResultList { get; set; } = new List<EnumReviewState>();
|
|
|
|
/// <summary>
|
|
/// 油漆件零件号
|
|
/// </summary>
|
|
public List<CqbmPart> PartCodeList { get; set; } = new List<CqbmPart>();
|
|
}
|
|
|
|
public class CqbmPart
|
|
{
|
|
public string 零件号 { get; set; }
|
|
|
|
public string 描述一 { get; set; }
|
|
|
|
public string 描述二 { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return 零件号;
|
|
}
|
|
}
|
|
|
|
public class CqbmptReason
|
|
{
|
|
public string 不合格原因 { get; set; }
|
|
|
|
public EnumCqbmptProcess 工序 { get; set; }
|
|
|
|
public int 状态 { get; set; }
|
|
|
|
public string 备注 { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return 不合格原因;
|
|
}
|
|
}
|
|
}
|
|
|