westdc-zf1/application/module/Westdc/Visual/Reader/Sc.php

33 lines
476 B
PHP
Raw Normal View History

2014-05-12 06:53:21 +00:00
<?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()
{
}
}