1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using static System.Windows.Forms.VisualStyles.VisualStyleElement;
- namespace Aitex.Core.MES.YZQZ
- {
- public enum ResultStatus
- {
- Success = 200,
- Abnormal = 201,
- NotSmpData = 202,
- NotFtData = 203,
- NotLastOneFtData = 204,
- ParameterError = 205,
- GearPositionError = 207,
- ProductTypeError = 208,
- VfExceedRuleRange = 209,
- WldExceedRuleRange = 210,
- LopExceedRuleRange = 211,
- NotProberData = 212,
- UploadTimeMoreThanSixHour = 213,
- NonactiveStatus = 214,
- VerificationChip = 215,
- StatusError = 216,
- NotFormulaData = 217,
- NotComponentData = 218,
- NotEdcParameter = 219,
- NotSystemDataSet = 220,
- NotSorterAfterData = 221,
- ExceedScrapingFactor = 222
- }
- public class ResponseRecipe
- {
- public string LotId { get; set; }
- public string DeviceName { get; set; }
- public string RecipeName { get; set; }
- public int ComponentQty { get; set; }
- public string Operation { get; set; }
-
- }
- public class ResponseResult
- {
- public string Message { get; set; }
- public int Status { get; set; }
- public List<ResponseRecipe> Data { get; set; }
-
- }
-
- }
|