You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
850 B
C#
36 lines
850 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Serializable]
|
|
public class WmsQcShowList : BaseEntity
|
|
{
|
|
//订单号
|
|
public string OrderNo { get; set; }
|
|
//零件号
|
|
public int PartId { get; set; }
|
|
//零件名称
|
|
public string PartNo { get; set; }
|
|
//总数量
|
|
public int QtySum { get; set; }
|
|
//未收
|
|
public int qty10 { get; set; }
|
|
|
|
//正常数量
|
|
public int OkQty { get; set; }
|
|
//异常数量
|
|
public int NcQty { get; set; }
|
|
|
|
//零件简码
|
|
public string partSpec { get; set; }
|
|
//零件名称
|
|
public string PartSpec2 { get; set; }
|
|
|
|
}
|
|
}
|