51 lines
1.1 KiB
C#
51 lines
1.1 KiB
C#
using System;
|
|||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace JY.MES.MES
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 产品进站信息
|
||
|
|
/// </summary>
|
||
|
|
|
||
|
|
public class ReqArrivalStation
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 工厂代码
|
||
|
|
/// </summary>
|
||
|
|
public string SiteCode { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 产线编号
|
||
|
|
/// </summary>
|
||
|
|
public string LineCode { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 设备编号
|
||
|
|
/// </summary>
|
||
|
|
public string EquipNum { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 物料编码
|
||
|
|
/// </summary>
|
||
|
|
public string MaterialCode { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 员工账号
|
||
|
|
/// </summary>
|
||
|
|
public string UserName { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 成品条码
|
||
|
|
/// </summary>
|
||
|
|
public string Identification { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 产品类型
|
||
|
|
/// </summary>
|
||
|
|
public string ProductType { get; set; }
|
||
|
|
}
|
||
|
|
}
|