123456789101112131415161718 |
- <?php
- namespace app\model;
- use think\Model;
- class OrderModel extends Model
- {
- protected $table = 'fc_order';
- protected $pk = 'id';
- //状态:0未发货,1已发货,2已收货
- public static $status_not_deliver = 0;
- public static $status_deliver = 1;
- public static $status_receipt = 2;
- }
|