dgns_gtcvrresult.h 775 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // Created by lloyd on 2020/10/14.
  3. //
  4. #ifndef GTCVR_DGNS_GTCVRRESULT_H
  5. #define GTCVR_DGNS_GTCVRRESULT_H
  6. #include "vector"
  7. #include "math.h"
  8. #include "../gtcommonkits.h"
  9. class dgns_gtcvrresult {
  10. public:
  11. dgns_gtcvrresult();
  12. public:
  13. std::string id;
  14. std::string result1;
  15. std::string result2;
  16. std::string wellname;
  17. std::vector<std::vector<double>> sgt;
  18. std::string processparam;
  19. std::string remark;
  20. std::string createtime;
  21. std::string userconfirmtime;
  22. std::string userconfirmcontent;
  23. std::string isproblem;
  24. int isexpected;
  25. public:
  26. std::vector<std::vector<double>> gt_trans_strtoarray(std::string sgt);
  27. std::string gt_trans_arraytostr(std::vector<std::vector<double>> sgt);
  28. };
  29. #endif //GTCVR_DGNS_GTCVRRESULT_H