using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Tiger.Model
|
{
|
|
public class SmtLoadingInput : BaseCodeInput
|
{
|
public int Step { get; set; }
|
public string prodCode { get; set; }
|
public string lineCode { get; set; }
|
public string pcbSurface { get; set; }
|
public string moCode { get; set; }
|
public string machineCode { get; set; }
|
public string feederType { get; set; }
|
}
|
}
|