FastMovieAI AI短剧创作平台 二开基线

- 源码: xhadmincn/FastMovieAI (Apache 2.0)
- 二开: Docker部署, Swoole改Select, route.php修复, 补update/VERSION
- vendor/示例资源已gitignore
This commit is contained in:
李建琦
2026-08-26 18:37:36 +08:00
commit eae151fd57
888 changed files with 105571 additions and 0 deletions
@@ -0,0 +1,15 @@
<?php
namespace plugin\notification\api;
use app\expose\api\Install as ApiInstall;
class Install
{
use ApiInstall;
public function __construct()
{
$this->plugin='notification';
$this->path = __DIR__;
}
}
@@ -0,0 +1,35 @@
/*
Navicat Premium Data Transfer
Source Server : Loong
Source Server Type : MySQL
Source Server Version : 80024 (8.0.24)
Source Host : 127.0.0.1:3306
Source Schema : cloud_xhadmin_cn
Target Server Type : MySQL
Target Server Version : 80024 (8.0.24)
File Encoding : 65001
Date: 18/05/2024 18:25:14
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for php_plugin_notification_log
-- ----------------------------
DROP TABLE IF EXISTS `php_plugin_notification_log`;
CREATE TABLE `php_plugin_notification_log` (
`id` int UNSIGNED NOT NULL AUTO_INCREMENT,
`uid` int NULL DEFAULT NULL,
`admin_uid` int NULL DEFAULT NULL,
`scene` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`num` int NULL DEFAULT NULL,
`create_time` datetime NULL DEFAULT NULL,
`update_time` datetime NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
SET FOREIGN_KEY_CHECKS = 1;