master
cody 4 months ago
parent eee82803e1
commit 1968470d35

@ -191,6 +191,7 @@ class CompanyController extends BaseController
* @OA\Parameter(name="company_product", in="query", @OA\Schema(type="string", format="textarea", nullable=true), description="产品"),
* @OA\Parameter(name="overseas_experience", in="query", @OA\Schema(type="string", nullable=true), description="海外经验"),
* @OA\Parameter(name="sales_volume", in="query", @OA\Schema(type="string", nullable=true), description="销售额"),
* @OA\Parameter(name="tag", in="query", @OA\Schema(type="string", nullable=true), description="标签,千企走访这类的数据"),
* @OA\Parameter(name="token", in="query", @OA\Schema(type="string"), required=true, description="认证token"),
* @OA\Response(
* response="200",

@ -20,8 +20,10 @@ return new class extends Migration {
$table->string('company_name')->nullable()->comment('企业名字');
// 行业类型
$table->string('company_attribute')->nullable()->comment('行业类型');
// 标签
// 标签-接口获取
$table->string('company_tag')->nullable()->comment('标签');
// 标签-千企走访
$table->string('tag')->nullable()->comment('标签');
// 企业规模
$table->string('company_scale')->nullable()->comment('企业规模');
// 成立时间

Loading…
Cancel
Save