feat: 添加产品询盘分页接口

This commit is contained in:
2025-03-14 11:45:39 +08:00
parent 3e5a754580
commit 19e3f5df33
5 changed files with 102 additions and 1 deletions

View File

@@ -36,6 +36,7 @@ class CreateProductInquiry extends Migrator
->addColumn('phone', 'string', ['limit' => 64, 'null' => true, 'default' => null, 'comment' => '电话'])
->addColumn('country_name', 'string', ['limit' => 128, 'null' => true, 'default' => null, 'comment' => '所在国家名称'])
->addColumn('industry', 'string', ['limit' => 64, 'null' => true, 'default' => null, 'comment' => '所属行业'])
->addColumn('referer_url', 'string', ['limit' => 256, 'null' => true, 'default' => null, 'comment' => '来源URL'])
->addColumn('message', 'text', ['null' => true, 'default' => null, 'comment' => '留言内容'])
->addColumn('created_at', 'timestamp', ['null' => false, 'default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间'])
->create();