33 lines
476 B
PHP
33 lines
476 B
PHP
|
<?php
|
||
|
//含沙量
|
||
|
//Sediment Concentration
|
||
|
namespace Westdc\Visual\Reader;
|
||
|
|
||
|
use Westdc\Visual\Record;
|
||
|
use Westdc\Visual\RecordInterface;
|
||
|
|
||
|
class Sc extends Record implements RecordInterface
|
||
|
{
|
||
|
function __construct()
|
||
|
{
|
||
|
parent::__construct(__CLASS__);
|
||
|
|
||
|
$this->initParams();
|
||
|
}
|
||
|
|
||
|
public function initParams()
|
||
|
{
|
||
|
$this->sql->fetchAll = "";
|
||
|
$mode = "";
|
||
|
}
|
||
|
|
||
|
public function fetch($id)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function getParam()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|