1234567891011121314151617181920 |
- <?php
- namespace app\fastshop\model;
- use think\Model;
- class OrderCache extends Model{
-
- protected $pk = 'id';
- protected $table = 'ai_fastshop_order_cache';
-
-
- public function Order(){
- return $this->hasOne('Order','order_no','order_no');
- }
- }
|