This commit is contained in:
Your Name
2026-05-27 15:50:54 +08:00
parent 8b0fcd7050
commit 19af50c344
16 changed files with 5372 additions and 684 deletions
@@ -0,0 +1,15 @@
<?php
namespace app\common\model\tcm;
use app\common\model\BaseModel;
/**
* 日常记录家人点赞
*/
class DailyFamilyLike extends BaseModel
{
protected $name = 'tcm_daily_family_like';
protected $autoWriteTimestamp = false;
}
@@ -0,0 +1,15 @@
<?php
namespace app\common\model\tcm;
use app\common\model\BaseModel;
/**
* 日常记录游戏化(稳糖分 / 勋章 / 任务领奖)
*/
class DailyGamify extends BaseModel
{
protected $name = 'tcm_daily_gamify';
protected $autoWriteTimestamp = false;
}
@@ -0,0 +1,15 @@
<?php
namespace app\common\model\tcm;
use app\common\model\BaseModel;
/**
* 日常记录分享邀请码
*/
class DailyShareInvite extends BaseModel
{
protected $name = 'tcm_daily_share_invite';
protected $autoWriteTimestamp = false;
}