feat: 企业版合作模式(后端、管理端、小程序)
- API:合作模式配置、用户选择、企业版入口与迁移 SQL - 管理端:合作方式管理、企业/用户侧设置与 CSV 导出等 - 小程序:合作模式弹窗与结果/简历等页对接;开发脚本小调整 Made-with: Cursor
This commit is contained in:
20
api/app/model/UserCooperationChoice.php
Normal file
20
api/app/model/UserCooperationChoice.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace app\model;
|
||||
|
||||
use think\Model;
|
||||
|
||||
class UserCooperationChoice extends Model
|
||||
{
|
||||
protected $name = 'user_cooperation_choices';
|
||||
|
||||
protected $schema = [
|
||||
'id' => 'int',
|
||||
'userId' => 'int',
|
||||
'enterpriseId' => 'int',
|
||||
'modeCode' => 'string',
|
||||
'chosenAt' => 'int',
|
||||
'updatedAt' => 'int',
|
||||
];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user