dgns_gtcvrresult.cpp 663 B

12345678910111213141516171819202122232425262728
  1. //
  2. // Created by lloyd on 2020/10/14.
  3. //
  4. #include <iostream>
  5. #include "dgns_gtcvrresult.h"
  6. #include "../gtcommonkits.h"
  7. dgns_gtcvrresult::dgns_gtcvrresult(){
  8. id="";
  9. result1="";
  10. result2="";
  11. wellname="";
  12. //sgt="";
  13. processparam="";
  14. remark="";
  15. createtime="";
  16. userconfirmtime="";
  17. userconfirmcontent="";
  18. isproblem="";
  19. isexpected=0;
  20. }
  21. std::vector<std::vector<double>> dgns_gtcvrresult::gt_trans_strtoarray(std::string sgt) {
  22. return gtcommonkits::gt_trans_strtoarray(sgt);
  23. }
  24. std::string dgns_gtcvrresult::gt_trans_arraytostr(std::vector<std::vector<double>> sgt) {
  25. return gtcommonkits::gt_trans_arraytostr(sgt);
  26. }