using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Tiger.Model.Entitys.MES.Position
|
{
|
public class NewPositionInput
|
{
|
public string USER_CODE { get; set; }
|
public string POST_CODE { get; set; }
|
}
|
|
public class WoInput : ApiInput
|
{
|
public string OrderNo { get; set; }
|
}
|
|
public class SubmitInput : ApiInput
|
{
|
public int CurStep { get; set; }
|
public string StepID { get; set; }
|
public string SN { get; set; }
|
public string DFT_CODE { get; set; }
|
public string Data { get; set; }
|
}
|
|
public class SubmitOutput
|
{
|
public bool IsFinished { get; set; }
|
public int CurStep { get; set; }
|
public string StepID { get; set; }
|
public string StepActCode { get; set; }
|
public object Data { get; set; }
|
}
|
|
public class DefectOutput
|
{
|
public string DFTG_CODE { get; set; }
|
public string DFTG_NAME { get; set; }
|
public string DFT_CODE { get; set; }
|
public string DFT_NAME { get; set; }
|
public int DFT_LEVEL { get; set; }
|
}
|
}
|