OrderModel.php 312 B

123456789101112131415161718
  1. <?php
  2. namespace app\model;
  3. use think\Model;
  4. class OrderModel extends Model
  5. {
  6. protected $table = 'fc_order';
  7. protected $pk = 'id';
  8. //状态:0未发货,1已发货,2已收货
  9. public static $status_not_deliver = 0;
  10. public static $status_deliver = 1;
  11. public static $status_receipt = 2;
  12. }