123456789101112131415161718192021222324252627 |
- <?php
- namespace app\model;
- use think\Model;
- class MasterOrderModel extends Model
- {
- protected $table = 'fc_master_order';
- protected $pk = 'id';
-
- public static $type_exchange_good = 1;
- public static $type_shopping_good = 2;
- public static $type_service = 3;
-
- public static $order_status_wait_pay = 0;
- public static $order_status_pay_fail = 1;
- public static $order_status_not_deliver = 2;
- public static $order_status_deliver = 3;
- public static $order_status_receipt = 4;
- }
|