// // Created by lloyd on 2020/10/14. // #ifndef GTCVR_DGNS_GTCVRRESULT_H #define GTCVR_DGNS_GTCVRRESULT_H #include "vector" #include "math.h" #include "../gtcommonkits.h" class dgns_gtcvrresult { public: dgns_gtcvrresult(); public: std::string id; std::string result1; std::string result2; std::string wellname; std::vector> sgt; std::string processparam; std::string remark; std::string createtime; std::string userconfirmtime; std::string userconfirmcontent; std::string isproblem; int isexpected; public: std::vector> gt_trans_strtoarray(std::string sgt); std::string gt_trans_arraytostr(std::vector> sgt); }; #endif //GTCVR_DGNS_GTCVRRESULT_H