feat: 批量购买

This commit is contained in:
2025-04-22 14:30:04 +08:00
parent c5eaa21ad7
commit 02ef195bf4
10 changed files with 319 additions and 4 deletions

View File

@@ -29,7 +29,7 @@ class CreateBulkPurchaseInquiry extends Migrator
{
$table = $this->table('bulk_purchase_inquiry', ['engine' => 'MyISAM', 'comment' => '批量采购询盘表']);
$table->addColumn('language_id', 'integer', ['signed' => false, 'null' => false, 'comment' => '语言ID'])
->addColumn('corp_name', 'string', ['limit' => 64, 'null' => false, 'comment' => '公司名称'])
->addColumn('corp_name', 'string', ['limit' => 128, 'null' => false, 'comment' => '公司名称'])
->addColumn('first_name', 'string', ['limit' => 64, 'null' => false, 'comment' => '姓'])
->addColumn('last_name', 'string', ['limit' => 64, 'null' => false, 'comment' => '名'])
->addColumn('email', 'string', ['limit' => 128, 'null' => false, 'comment' => '邮箱'])