登录注册功能

This commit is contained in:
2025-05-05 09:44:50 +08:00
parent db54446f8b
commit 147b2d3fd5
29 changed files with 552 additions and 60 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Models;
use App\BaseApp\BaseModel;
/**
* 项目技术栈关联表
*/
class ProjectTechnologyStacksRelationModel extends BaseModel
{
//
protected $table = 'project_technology_stacks_relations';
protected $guarded = [];
}