123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- //
- // Created by anna on 2020/12/3.
- //
- #include "aoid_singlegt_yield.h"
- #include "../gtcommonkits.h"
- aoid_singlegt_yield::aoid_singlegt_yield() {
- well_id = "";
- well_common_name = "";
- prod_date = "";
- stroke = 0;
- frequence = 0;
- bj = 0;
- bs = 0;
- cmd = 0;
- yzzj = 0;
- sxzh = 0;
- xxzh = 0;
- //sgt = "";
- //bgt = "";
- zdjg = "";
- refrencewell_id = "";
- refrencecjsj = "";
- liq_prod_daily = 0;
- oil_prod_daily = 0;
- gas_prod_daily = 0;
- eczdjg = "";
- bx = 0;
- hsl = 0;
- flag = 0;
- bdxs = 0;
- llpl = 0;
- zcc = 0;
- ycc = 0;
- sjcc = 0;
- yxcc = 0;
- ccss = 0;
- lsss = 0;
- gyss = 0;
- pumpdepth = 0;
- hy = 0;
- yy = 0;
- ty = 0;
- water_prod_daily = 0;
- //refrencesgt = "";
- scsj = 0;
- qyb = 0;
- stroke_ratio = 0;
- djdy = 0;
- hjwd = 0;
- ybdl = 0;
- xhqd = 0;
- sbh = "";
- }
- std::vector<std::vector<double>> aoid_singlegt_yield::gt_trans_strtoarray(std::string sgt) {
- return gtcommonkits::gt_trans_strtoarray(sgt);
- }
- std::string aoid_singlegt_yield::gt_trans_arraytostr(std::vector<std::vector<double>> sgt) {
- return gtcommonkits::gt_trans_arraytostr(sgt);
- }
|