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.
60 lines
1.4 KiB
60 lines
1.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MESClassLibrary.Model
|
|
{
|
|
public class PartMstrModel
|
|
{
|
|
public string GUID { set; get; }
|
|
|
|
/// <summary>
|
|
/// 零件号
|
|
/// </summary>
|
|
public string PartCode { set; get; }
|
|
public string Desc1 { set; get; }
|
|
public string Desc2 { set; get; }
|
|
public string Um { set; get; }
|
|
|
|
/// <summary>
|
|
/// 产品类 1101:原材料;2000:塑件
|
|
/// </summary>
|
|
public string ProdLine { set; get; }
|
|
|
|
public string AddDate { set; get; }
|
|
|
|
/// <summary>
|
|
/// 物料类型
|
|
/// </summary>
|
|
public string PartType { set; get; }
|
|
|
|
/// <summary>
|
|
/// 物料状态 AC:Active;New:New Item;PH:虚零件;SP:停用零件;HD:Hold 停用
|
|
/// </summary>
|
|
public string Status { set; get; }
|
|
|
|
/// <summary>
|
|
/// Q等级
|
|
/// </summary>
|
|
public string Qgrade { set; get; }
|
|
|
|
/// <summary>
|
|
/// 存货代码
|
|
/// </summary>
|
|
public string InventoryCode { set; get; }
|
|
|
|
public string UID { set; get; }
|
|
|
|
public string Remark { set; get; }
|
|
|
|
public string TaskID { set; get; }
|
|
|
|
public string CommandType { get; set; }
|
|
|
|
public string Domain { set; get; }
|
|
|
|
public string Site { set; get; }
|
|
}
|
|
}
|
|
|