12345678910111213141516171819202122232425262728 |
- //
- // Created by lloyd on 2020/10/14.
- //
- #include <iostream>
- #include "dgns_gtcvrresult.h"
- #include "../gtcommonkits.h"
- dgns_gtcvrresult::dgns_gtcvrresult(){
- id="";
- result1="";
- result2="";
- wellname="";
- //sgt="";
- processparam="";
- remark="";
- createtime="";
- userconfirmtime="";
- userconfirmcontent="";
- isproblem="";
- isexpected=0;
- }
- std::vector<std::vector<double>> dgns_gtcvrresult::gt_trans_strtoarray(std::string sgt) {
- return gtcommonkits::gt_trans_strtoarray(sgt);
- }
- std::string dgns_gtcvrresult::gt_trans_arraytostr(std::vector<std::vector<double>> sgt) {
- return gtcommonkits::gt_trans_arraytostr(sgt);
- }
|