新增 UsdtC2C Resource 与页面

This commit is contained in:
2025-06-10 08:26:54 +07:00
parent 4630421e08
commit 827a0e8133
38 changed files with 3532 additions and 31 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class UsdtC2c extends Model
{
protected $table = 'UsdtC2c';
public $timestamps = true; // 我们只用 created_at 字段
protected $fillable = ['Highest', 'Million', 'created_at'];
}