This commit is contained in:
2025-10-10 19:15:41 +08:00
parent af6403d6aa
commit c606916057
6 changed files with 1010 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace app\common\model;
use think\Model;
class RedpacketRecord extends Model
{
protected $autoWriteTimestamp = true;
protected $createTime = 'createtime';
protected $updateTime = false;
}