16 lines
305 B
PHP
16 lines
305 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class ActivityMeetingApply extends BaseModel
|
||
|
|
{
|
||
|
|
use HasFactory;
|
||
|
|
protected $table = 'activity_meeting_apply';
|
||
|
|
|
||
|
|
const STATUS_NORMAL = 0;
|
||
|
|
const STATUS_ABNORMAL = 1;
|
||
|
|
}
|