HostRecipe.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Aitex.Sorter.RT.Module.Recipe
  7. {
  8. public class HostRecipe
  9. {
  10. /// <summary>
  11. /// 1: by slot 根据host指令
  12. /// 2: by loadport 只指定LoadPort
  13. /// </summary>
  14. public string READIDRECIPE_NAME;
  15. public string TRANS_MODE;
  16. /// <summary>
  17. /// ???是否校验
  18. /// </summary>
  19. public string WAF_CNT;
  20. public string SRC_PORT_ID;
  21. public string LOT_ID;
  22. public string CAR_ID;
  23. public string NEED_ALIGN;
  24. public string ALIGN_ANGLE;
  25. public string[] EXIST_FLAG;
  26. public string[] WAFER_ID;
  27. public string[] LASERMARK1;
  28. public string[] LASERMARK2;
  29. /// <summary>
  30. /// 0: Do not transfer
  31. /// 1: Transfer
  32. /// </summary>
  33. public string[] TRANS_FLAG;
  34. public string[] DEST_PORT_ID;
  35. public string[] DEST_SLOT_NO;
  36. public string[] DEST_PORT_CTGRY;
  37. /// <summary>
  38. /// "0000" to specify the LM need to read or not "OCR2.LM2,OCR2.LM1,OCR1.LM2,OCR1.LM1",”0“ to disable, "1" to enable
  39. /// </summary>
  40. public string[] READ_LM;
  41. /// <summary>
  42. /// "0000" to specify the LM need to Verify or not "OCR2.LM2,OCR2.LM1,OCR1.LM2,OCR1.LM1",”0“ to disable, "1" to enable
  43. /// </summary>
  44. public string[] VERIFY_LM;
  45. /// <summary>
  46. /// No Alignment when absent, 0-359 are applicable.
  47. /// </summary>
  48. public string[] ALIGNE_VALUE;
  49. }
  50. public class HostTransferCommand
  51. {
  52. /// <summary>
  53. /// 1: by slot 根据host指令
  54. /// 2: by loadport 只指定LoadPort
  55. /// </summary>
  56. public string REMOTE_RECIPE_NAME;
  57. public string TRANS_MODE;
  58. /// <summary>
  59. /// ???是否校验
  60. /// </summary>
  61. public string WAF_CNT;
  62. public string SRC_PORT_ID;
  63. public string LOT_ID;
  64. public string CAR_ID;
  65. public string NEED_ALIGN;
  66. public string ALIGN_ANGLE;
  67. public string[] EXIST_FLAG;
  68. public string[] WAFER_ID;
  69. public string[] LASERMARK1;
  70. public string[] LASERMARK2;
  71. /// <summary>
  72. /// 0: Do not transfer
  73. /// 1: Transfer
  74. /// </summary>
  75. public string[] TRANS_FLAG;
  76. public string[] DEST_PORT_ID;
  77. public string[] DEST_SLOT_NO;
  78. public string[] DEST_PORT_CTGRY;
  79. /// <summary>
  80. /// "0000" to specify the LM need to read or not "OCR2.LM2,OCR2.LM1,OCR1.LM2,OCR1.LM1",”0“ to disable, "1" to enable
  81. /// </summary>
  82. public string[] READ_LM;
  83. /// <summary>
  84. /// "0000" to specify the LM need to Verify or not "OCR2.LM2,OCR2.LM1,OCR1.LM2,OCR1.LM1",”0“ to disable, "1" to enable
  85. /// </summary>
  86. public string[] VERIFY_LM;
  87. /// <summary>
  88. /// No Alignment when absent, 0-359 are applicable.
  89. /// </summary>
  90. public string[] ALIGNE_VALUE;
  91. }
  92. }