Git 文件整理

This commit is contained in:
2025-11-18 10:07:09 +08:00
parent 9ea7e69f22
commit 4bf358de6b
19 changed files with 2935 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?php
namespace app\guildadmin\model;
use think\Model;
class AuthGroup extends Model
{
// 开启自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
protected $table = 'fa_vs_guild_admin_auth_group';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
public function getNameAttr($value, $data)
{
return __($value);
}
}