1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- // +—————————————————————————————————————————————————————————————————————
- // | Created by Yunbao
- // +—————————————————————————————————————————————————————————————————————
- // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
- // +—————————————————————————————————————————————————————————————————————
- // | Author: https://gitee.com/yunbaokeji
- // +—————————————————————————————————————————————————————————————————————
- // | Date: 2022-04-30
- // +—————————————————————————————————————————————————————————————————————
- class Domain_Label {
-
- public function getList() {
- $rs = array();
-
- $model = new Model_Label();
- $rs = $model->getList();
- return $rs;
- }
- public function searchLabel($key,$p) {
- $rs = array();
-
- $model = new Model_Label();
- $rs = $model->searchLabel($key,$p);
- return $rs;
- }
- public function getLabel($id) {
- $rs = array();
-
- $model = new Model_Label();
- $rs = $model->getLabel($id);
- return $rs;
- }
- public function getVideos($labelid) {
- $rs = array();
-
- $model = new Model_Label();
- $rs = $model->getVideos($labelid);
- return $rs;
- }
- }
|