| 1234567891011121314151617181920212223242526272829 |
- <?php
- namespace app\user\model;
- use think\Model;
- /**
- * 用户管理
- */
- class Order extends Model
- {
- public function getOrder($condition)
- {
- $result = $this
- ->alias('a')
- ->join('product b', 'a.product_id = b.product_id')
- ->where($condition)
- ->order('order_buyTime desc')
- ->paginate(10);
- return $result;
- }
- public function addOrder($data)
- {
- $result = $this->insert($data);
- return $result;
- }
- }
|