SJA APS后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
408 B

  1. package common
  2. // 打印消息类型和状态
  3. const (
  4. MESMSG_TYPE_PACK = "PACK"
  5. MESMSG_STATUS_PLAN = 20
  6. MESMSG_STATUS_FINISHED = 80
  7. MESMSG_STATUS_PENDING = 95
  8. MESMSG_EVENT_RELPACK = "RELEASE"
  9. MESMSG_EVENT_PRINT = "PRINT"
  10. MESWO_UNPACK_STATUS = 0
  11. MESWO_PACKED_STATUS = 1
  12. MESPACK_SORT_OEMSEQ = "OEMSEQ"
  13. MESPACK_SORT_RELSEQ = "RELSEQ"
  14. MES_ACTIVATED = 1
  15. MES_DEACTIVATED = 0
  16. )