DiverseYouthNightSchool/application/manystore/model/ManystoreAuthGroup.php

22 lines
389 B
PHP
Raw Normal View History

2024-11-04 15:00:20 +08:00
<?php
namespace app\manystore\model;
use think\Model;
class ManystoreAuthGroup extends Model
{
// 开启自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
public function getNameAttr($value, $data)
{
return __($value);
}
}