Orl 短網址,供三星、福斯使用

ProductManagement.php 488B

12345678910111213
  1. <?php
  2. namespace App\Models\EcManagement;
  3. use Illuminate\Database\Eloquent\Model;
  4. class ProductManagement extends Model
  5. {
  6. protected $connection = 'mysql'; // 參照 config/database.php 的連線名稱
  7. protected $table = 'ecManagement_productManagement'; // 表名需符合命名規範
  8. protected $primaryKey = 'serno'; // PK 的欄位名稱
  9. public $timestamps = false; // 保持 false
  10. }