1234567891011121314151617181920212223 |
- <?php
- namespace app\model;
- use think\Model;
- class ServiceModel extends Model
- {
- protected $table = 'fc_service';
- protected $pk = 'id';
-
- public static $status_online = 1;
- public static $status_offline = 0;
-
- public static $activity_status_not_started = 0;
- public static $activity_status_ing = 1;
- public static $activity_status_end = 2;
- }
|