This commit is contained in:
2025-11-21 01:42:54 +08:00
parent ff026c6f32
commit f89196c73c
1953 changed files with 9 additions and 15246 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;
}