17 lines
279 B
PHP
17 lines
279 B
PHP
|
<?php
|
||
|
|
||
|
namespace app\model;
|
||
|
|
||
|
use support\Log;
|
||
|
use think\facade\Db;
|
||
|
use support\Redis;
|
||
|
|
||
|
class DyOrderProductAppointments extends base {
|
||
|
protected $table = 'dy_order_appointments';
|
||
|
protected $json = [
|
||
|
'pay_info',
|
||
|
'book_info',
|
||
|
'buyer_info',
|
||
|
];
|
||
|
}
|