|
- <?php
- /**
- *
- * ============================================================================
- * * 版权所有 蜘蛛出行 * *
- * 网站地址: http://www.zhizhuchuxing.com
- * ----------------------------------------------------------------------------
- * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
- * 使用;不允许对程序代码以任何形式任何目的的再发布。
- * ============================================================================
- * Author By: 倪宗锋
- * PhpStorm OperaProduct.php
- * Create By 2016/11/8 10:10 $
- */
-
-
- namespace Home\Model;
-
-
- use Base\Tool\DbTable;
- use Util\Util\Util;
-
- class OperaProduct extends DbTable
- {
- public $db = 'CST';
- public $tab = 'opera_product';
-
- /**
- * Function Description:获取列表
- * Function Name: getList
- *
- * @return array
- *
- * @author 倪宗锋
- */
- public function getList()
- {
- $sql = 'select * from opera_product limit 10';
- $result = $this->fetchRow($sql);
- return Util::returnArrSu('', '', $result);
- }
-
- public function updates()
- {
- $data = array(
- 'CANCEL_FLAG' => '1',
- 'ORG_ID' => '1'
- );
- $where = 'PROD_ID = 1';
- $update = $this->update($data, $where);
- }
-
- }
|