| 1234567891011121314151617181920212223242526 |
- <?php
- namespace App\Models\manager\Collect;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Support\Facades\DB;
- /**
- * 采集配置-商品关键字管理
- * @author: 唐远望
- * @version: 1.0
- * @date: 2026-03-31
- */
- class ProductKeyword extends Model
- {
- use HasFactory;
- // 与模型关联的表名
- protected $table = 'collect_product_keyword';
- // 是否主动维护时间戳
- public $timestamps = false;
- // 定义时间戳字段名
- // const CREATED_AT = 'insert_time';
- // const UPDATED_AT = 'update_time';
- }
|