using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Tiger.Model
|
{
|
public class U9C_MES_Input
|
{
|
public string startTime { get; set; }
|
public string endTime { get; set; }
|
public string triggerDetail { get; set; }
|
public DateTime LastRunTime { get; set; }
|
}
|
|
public class GetBasItemInput : U9C_MES_Input
|
{
|
public string isProd { get; set; }
|
}
|
|
public class GetCustomerInput : U9C_MES_Input
|
{
|
}
|
|
public class GetSupplierInput : U9C_MES_Input
|
{
|
}
|
|
public class GetWoInput : U9C_MES_Input
|
{
|
}
|
public class GetCustBarcodeInput : U9C_MES_Input
|
{
|
}
|
}
|