AggregateKeyword.php
481 字节
<?php
/**
* @remark :
* @name :AggregateKeyword.php
* @author :lyh
* @method :post
* @time :2025/3/17 16:02
*/
namespace App\Models\Project;
use App\Models\Base;
/**
* 聚合页关键词设置
* Class AggregateKeyword
* @package App\Models\Project
*/
class AggregateKeyword extends Base
{
protected $table = 'gl_aggregate_keyword';
/**
* 关键词是否导入项目聚合页关键词
*/
const STATUS_INIT = 0;
const STATUS_FINISH = 1;
}