This commit is contained in:
2024-12-03 10:18:07 +08:00
parent 6fcd8f7ce2
commit a6c7d1de15
14 changed files with 236 additions and 20 deletions

View File

@ -6,5 +6,8 @@ use think\admin\Model;
class TicketDept extends Model
{
public function scopeAvail($query)
{
$query->where('status', '=', 1);
}
}