27 lines
568 B
C#
27 lines
568 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace JinYuan.MES.Models
|
|
{
|
|
internal class GetDMCJetCodeParam
|
|
{
|
|
/// <summary>
|
|
/// 设备编号
|
|
/// </summary>
|
|
public string equipNum { get; set; }
|
|
|
|
/// <summary>
|
|
/// 托盘码
|
|
/// </summary>
|
|
public string containerCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 产品条码
|
|
/// </summary>
|
|
public List<string> identificationList { get; set; }
|
|
}
|
|
}
|