mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
17 lines
213 B
PHP
17 lines
213 B
PHP
<?php
|
|
|
|
namespace app\model;
|
|
|
|
use think\Model;
|
|
use think\model\concern\SoftDelete;
|
|
|
|
/**
|
|
* @mixin think\Model
|
|
*/
|
|
class AdminGroup extends Model
|
|
{
|
|
//
|
|
use SoftDelete;
|
|
protected $defaultSoftDelete = 0;
|
|
}
|