Files
sbnews/server/app/common/model/article/ArticleComment.php
T
2026-06-11 12:15:29 +08:00

19 lines
311 B
PHP

<?php
namespace app\common\model\article;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 文章评论模型
* Class ArticleComment
* @package app\common\model\article
*/
class ArticleComment extends BaseModel
{
use SoftDelete;
protected $deleteTime = 'delete_time';
}