OnlineCardStudentMatcher.h 640 B

12345678910111213141516171819
  1. #pragma once
  2. #include "StudentMatcher.h"
  3. //////////////////////////////////////////////////////////////////////////
  4. // author liulang
  5. // date 2020-04-24
  6. //////////////////////////////////////////////////////////////////////////
  7. class COnlineCardStudentMatcher: public CStudentMatcher
  8. {
  9. public:
  10. COnlineCardStudentMatcher();
  11. virtual ~COnlineCardStudentMatcher();
  12. protected:
  13. CString url_strcode;
  14. virtual ServiceState OnStarting(void) override;
  15. virtual ServiceState OnRunning(void) override;
  16. private:
  17. void updatefile(CppSQLite3DB* bantch_db, long student_paper_id, const std::string & norimg_dir, const std::string & excimg_dir);
  18. };