#pragma once #include "StudentMatcher.h" ////////////////////////////////////////////////////////////////////////// // author liulang // date 2020-04-24 ////////////////////////////////////////////////////////////////////////// class COnlineCardStudentMatcher: public CStudentMatcher { public: COnlineCardStudentMatcher(); virtual ~COnlineCardStudentMatcher(); protected: CString url_strcode; virtual ServiceState OnStarting(void) override; virtual ServiceState OnRunning(void) override; private: void updatefile(CppSQLite3DB* bantch_db, long student_paper_id, const std::string & norimg_dir, const std::string & excimg_dir); };