foreach ($data as $key => $value) {
// $this->Mt4Data_workingorder->fill($value);
// $this->Mt4Data_workingorder->save();
模型插入插入 多条数据时 打印sql 发现只有第一条是innsert
后面的数据全是第一条的数据更新
DB::table('mt4data_workingorder')->insert($value);
//用这个是正常的
}