- API:合作模式配置、用户选择、企业版入口与迁移 SQL - 管理端:合作方式管理、企业/用户侧设置与 CSV 导出等 - 小程序:合作模式弹窗与结果/简历等页对接;开发脚本小调整 Made-with: Cursor
27 lines
633 B
PHP
27 lines
633 B
PHP
<?php
|
|
|
|
namespace app\model;
|
|
|
|
use think\Model;
|
|
|
|
class EnterpriseCooperationMode extends Model
|
|
{
|
|
protected $name = 'enterprise_cooperation_modes';
|
|
|
|
protected $schema = [
|
|
'id' => 'int',
|
|
'enterpriseId' => 'int',
|
|
'modeCode' => 'string',
|
|
'enabled' => 'int',
|
|
'sortOrder' => 'int',
|
|
'title' => 'string',
|
|
'description' => 'string',
|
|
'createdAt' => 'int',
|
|
'updatedAt' => 'int',
|
|
];
|
|
|
|
protected $autoWriteTimestamp = 'int';
|
|
protected $createTime = 'createdAt';
|
|
protected $updateTime = 'updatedAt';
|
|
}
|