初始化代码

This commit is contained in:
2025-08-11 10:22:05 +08:00
commit ebd8d85201
4206 changed files with 753018 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace app\admin\model;
use think\Model;
class UserGiftPackLog extends Model
{
public static function TypeLable()
{
//1系统赠送2宝箱获得3个人赠送
return [
'1' => '系统赠送',
'2' => '宝箱获得',
'3' => '个人打赏',
'4' => '玩法获取',
'5' => '盲盒巡音会获取',
];
}
}