1
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user