修改含沙量数据读取方式
This commit is contained in:
parent
175bd3c5bd
commit
552291bac7
|
@ -5,13 +5,15 @@ namespace Westdc\Visual\Reader;
|
||||||
use Westdc\Visual\Record;
|
use Westdc\Visual\Record;
|
||||||
use Westdc\Visual\RecordInterface;
|
use Westdc\Visual\RecordInterface;
|
||||||
|
|
||||||
class SoilMoisture extends Record implements RecordInterface
|
abstract class SoilMoisture extends Record implements RecordInterface
|
||||||
{
|
{
|
||||||
function __construct()
|
function __construct()
|
||||||
{
|
{
|
||||||
parent::__construct(__CLASS__);
|
parent::__construct(__CLASS__);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public $tablename;
|
||||||
|
|
||||||
public $subset;
|
public $subset;
|
||||||
|
|
||||||
public function switchDataset()
|
public function switchDataset()
|
||||||
|
@ -47,7 +49,7 @@ class SoilMoisture extends Record implements RecordInterface
|
||||||
{
|
{
|
||||||
$this->switchDataset();
|
$this->switchDataset();
|
||||||
|
|
||||||
$sql = "SELECT * FROM data_watercontent
|
$sql = "SELECT * FROM {$this->tablename}
|
||||||
WHERE
|
WHERE
|
||||||
$this->subset > 0
|
$this->subset > 0
|
||||||
ORDER BY
|
ORDER BY
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?php
|
||||||
|
//土壤水分
|
||||||
|
namespace Westdc\Visual\Reader;
|
||||||
|
|
||||||
|
class SoilMoisture2007 extends SoilMoisture
|
||||||
|
{
|
||||||
|
function __construct()
|
||||||
|
{
|
||||||
|
parent::__construct();
|
||||||
|
$this->tablename = "data_watercontent2007";
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?php
|
||||||
|
//土壤水分
|
||||||
|
namespace Westdc\Visual\Reader;
|
||||||
|
|
||||||
|
class SoilMoisture2008 extends SoilMoisture
|
||||||
|
{
|
||||||
|
function __construct()
|
||||||
|
{
|
||||||
|
parent::__construct();
|
||||||
|
$this->tablename = "data_watercontent2008";
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?php
|
||||||
|
//土壤水分
|
||||||
|
namespace Westdc\Visual\Reader;
|
||||||
|
|
||||||
|
class SoilMoisture2009 extends SoilMoisture
|
||||||
|
{
|
||||||
|
function __construct()
|
||||||
|
{
|
||||||
|
parent::__construct();
|
||||||
|
$this->tablename = "data_watercontent2009";
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?php
|
||||||
|
//土壤水分
|
||||||
|
namespace Westdc\Visual\Reader;
|
||||||
|
|
||||||
|
class SoilMoisture2010 extends SoilMoisture
|
||||||
|
{
|
||||||
|
function __construct()
|
||||||
|
{
|
||||||
|
parent::__construct();
|
||||||
|
$this->tablename = "data_watercontent2010";
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?php
|
||||||
|
//土壤水分
|
||||||
|
namespace Westdc\Visual\Reader;
|
||||||
|
|
||||||
|
class SoilMoisture2011 extends SoilMoisture
|
||||||
|
{
|
||||||
|
function __construct()
|
||||||
|
{
|
||||||
|
parent::__construct();
|
||||||
|
$this->tablename = "data_watercontent2011";
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?php
|
||||||
|
//土壤水分
|
||||||
|
namespace Westdc\Visual\Reader;
|
||||||
|
|
||||||
|
class SoilMoisture2012 extends SoilMoisture
|
||||||
|
{
|
||||||
|
function __construct()
|
||||||
|
{
|
||||||
|
parent::__construct();
|
||||||
|
$this->tablename = "data_watercontent2012";
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?php
|
||||||
|
//土壤水分
|
||||||
|
namespace Westdc\Visual\Reader;
|
||||||
|
|
||||||
|
class SoilMoisture2013 extends SoilMoisture
|
||||||
|
{
|
||||||
|
function __construct()
|
||||||
|
{
|
||||||
|
parent::__construct();
|
||||||
|
$this->tablename = "data_watercontent2013";
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue