推送更新

This commit is contained in:
2025-05-29 17:33:17 +08:00
parent 46e5333864
commit 47cfb7dcaf
5 changed files with 517 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace app\admin\model;
use think\Model;
class ContentPush extends Model
{
protected $name = 'content_push';
// 自动写入时间戳
protected $autoWriteTimestamp = true;
// 定义时间戳字段名
protected $createTime = 'create_time';
protected $updateTime = 'update_time';
protected $deleteTime = 'delete_time';
}