chenluhua1980
2026-01-10 ded981a2ac5dbb456bafce5468d7289bc45e313b
SourceCode/Bond/Servo/CEquipment.cpp
@@ -208,6 +208,21 @@
      return m_strDescription;
   }
   void CEquipment::setCurrentRecipe(const std::string& recipe)
   {
      Lock();
      m_currentRecipe = recipe;
      Unlock();
   }
   std::string CEquipment::getCurrentRecipe()
   {
      Lock();
      std::string out = m_currentRecipe;
      Unlock();
      return out;
   }
   void CEquipment::setStation(int network, int station)
   {
      m_station.nNetNo = network;
@@ -1655,6 +1670,10 @@
            m_strName.c_str(), nRet);
      }
      if (m_listener.onReceivedJob != nullptr) {
         m_listener.onReceivedJob(this, port, pJobDataS);
      }
      return nRet;
   }