init admin

This commit is contained in:
2025-11-07 09:56:20 +08:00
commit d9d7ddc05d
2718 changed files with 665424 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
namespace app\model;
/**
* @property integer $id 主键(ID) - 主键
* @property integer $user_id 用户ID
* @property string $sign_date 签到日期
* @property integer $reward 签到奖励
* @property integer $continuous_days 连续签到天数
* @property integer $created_at 创建时间
*/
class UserSignin extends Base
{
protected $name = 'user_signin';
protected $autoWriteTimestamp = true;
}