AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
[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