feat: IEO后端 — 申购+配售码+开奖+后台

This commit is contained in:
testadmin
2026-04-28 17:42:00 +08:00
parent dc19fdb5da
commit 928d573b11
7 changed files with 633 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class IeoProject extends Model
{
protected $table = 'ieo_project';
protected $fillable = ['name','symbol','description','whitepaper_url','thumb_image','token_price','total_supply','min_buy','max_buy','start_time','end_time','type','status','fake_progress','real_sold','subscription_limit','announce_time','listing_time','unlock_time'];
}