12 lines
203 B
PHP
12 lines
203 B
PHP
|
<?php
|
||
|
//土壤水分
|
||
|
namespace Westdc\Visual\Reader;
|
||
|
|
||
|
class SoilMoisture2012 extends SoilMoisture
|
||
|
{
|
||
|
function __construct()
|
||
|
{
|
||
|
parent::__construct();
|
||
|
$this->tablename = "data_watercontent2012";
|
||
|
}
|
||
|
}
|