🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] ## 文件命名 ### 模型命名 PascalCase 如 LoginForm.php ### 视图命名 lowerCase 如 view.php productInfo.php ### 控制器命名 PascalCase 如 ProductController.php ## MySQL命名 ### 数据库命名 lower_case 如 db_review ### 数据表命名 lower_case 如 product_info ### 字段命名 lower_case 如 description created_at ### 常用字段命名 - 主键 id - 外键 表名_id,如user_id - 时间 created_at updated_at ### 迁移文件命名 lower_case 如 add_description_to_product