1234567891011121314151617181920212223 |
- <?php
- namespace huo\model\links;
- use huo\model\common\CommonModel;
- class LinksModel extends CommonModel {
- protected $name = 'link';
- public function getList($where){
- $params['where'] = $where;
- return $this->getDatas($params);
- }
- }
|