32 lines
731 B
C#
32 lines
731 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MisDataSaveDate.MOM
|
|
{
|
|
/// <summary>
|
|
/// 缓存位置查询
|
|
/// </summary>
|
|
|
|
public class MaterialConfirm
|
|
{
|
|
/// <summary>
|
|
/// 请求编号
|
|
/// </summary>
|
|
public string tackcode { get; set; } = "";
|
|
/// <summary>
|
|
/// 请求方标识
|
|
/// </summary>
|
|
public string orderID { get; set; } = "";
|
|
/// <summary>
|
|
/// 工位号
|
|
/// </summary>
|
|
public string taskID { get; set; } = "";
|
|
public string processId { get; set; } = "";
|
|
public string containerNo { get; set; } = "";
|
|
}
|
|
|
|
}
|