1234567891011121314151617181920212223242526272829 |
- <?php
- namespace app\admin\model;
- use think\Model;
- class AuthGroup extends Model
- {
- // 开启自动写入时间戳字段
- protected $autoWriteTimestamp = 'int';
- // 定义时间戳字段名
- protected $createTime = 'createtime';
- protected $updateTime = 'updatetime';
- public static $servicePlatform = [
- 'h5' => 'H5',
- 'dy' => '抖音',
- 'ks' => '快手'
- ];
- public static $serviceType = [1=>'电话', 2=>'链接', 3=>'二维码'];
- public function getNameAttr($value, $data)
- {
- return __($value);
- }
- }
|