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.

85 lines
2.1 KiB

4 years ago
#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 ;
}
}
}