123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Aitex.Sorter.RT.Module.Recipe
- {
- public class HostRecipe
- {
- /// <summary>
- /// 1: by slot 根据host指令
- /// 2: by loadport 只指定LoadPort
- /// </summary>
- public string READIDRECIPE_NAME;
- public string TRANS_MODE;
- /// <summary>
- /// ???是否校验
- /// </summary>
- public string WAF_CNT;
- public string SRC_PORT_ID;
- public string LOT_ID;
- public string CAR_ID;
- public string NEED_ALIGN;
- public string ALIGN_ANGLE;
-
- public string[] EXIST_FLAG;
- public string[] WAFER_ID;
- public string[] LASERMARK1;
- public string[] LASERMARK2;
- /// <summary>
- /// 0: Do not transfer
- /// 1: Transfer
- /// </summary>
- public string[] TRANS_FLAG;
- public string[] DEST_PORT_ID;
- public string[] DEST_SLOT_NO;
- public string[] DEST_PORT_CTGRY;
- /// <summary>
- /// "0000" to specify the LM need to read or not "OCR2.LM2,OCR2.LM1,OCR1.LM2,OCR1.LM1",”0“ to disable, "1" to enable
- /// </summary>
- public string[] READ_LM;
- /// <summary>
- /// "0000" to specify the LM need to Verify or not "OCR2.LM2,OCR2.LM1,OCR1.LM2,OCR1.LM1",”0“ to disable, "1" to enable
- /// </summary>
- public string[] VERIFY_LM;
- /// <summary>
- /// No Alignment when absent, 0-359 are applicable.
- /// </summary>
- public string[] ALIGNE_VALUE;
- }
- public class HostTransferCommand
- {
- /// <summary>
- /// 1: by slot 根据host指令
- /// 2: by loadport 只指定LoadPort
- /// </summary>
- public string REMOTE_RECIPE_NAME;
- public string TRANS_MODE;
- /// <summary>
- /// ???是否校验
- /// </summary>
- public string WAF_CNT;
- public string SRC_PORT_ID;
- public string LOT_ID;
- public string CAR_ID;
- public string NEED_ALIGN;
- public string ALIGN_ANGLE;
- public string[] EXIST_FLAG;
- public string[] WAFER_ID;
- public string[] LASERMARK1;
- public string[] LASERMARK2;
- /// <summary>
- /// 0: Do not transfer
- /// 1: Transfer
- /// </summary>
- public string[] TRANS_FLAG;
- public string[] DEST_PORT_ID;
- public string[] DEST_SLOT_NO;
- public string[] DEST_PORT_CTGRY;
- /// <summary>
- /// "0000" to specify the LM need to read or not "OCR2.LM2,OCR2.LM1,OCR1.LM2,OCR1.LM1",”0“ to disable, "1" to enable
- /// </summary>
- public string[] READ_LM;
- /// <summary>
- /// "0000" to specify the LM need to Verify or not "OCR2.LM2,OCR2.LM1,OCR1.LM2,OCR1.LM1",”0“ to disable, "1" to enable
- /// </summary>
- public string[] VERIFY_LM;
- /// <summary>
- /// No Alignment when absent, 0-359 are applicable.
- /// </summary>
- public string[] ALIGNE_VALUE;
- }
- }
|