适配器在基类Adapter中已经通过构造方法,实例化数据存储了,调用insertOne方法就能写入对应的数据
$id:数据ID,$number:数据编号,$data:数据内容,$idCheck:ID是否检查,$jobId:任务ID
读取配置里面的,得到ID和number
$id = $this->getDataKeyValue($data, $this->metaData[‘id’]) . '';
$number = $this->getDataKeyValue($data, $this->metaData[‘number’] . '');
$this->getDataStorage()->insertOne($id, $number, $data, $this->metaData[‘idCheck’], $jobId);