FastMovieAI AI短剧创作平台 二开基线
- 源码: xhadmincn/FastMovieAI (Apache 2.0) - 二开: Docker部署, Swoole改Select, route.php修复, 补update/VERSION - vendor/示例资源已gitignore
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace plugin\notification\utils\enum;
|
||||
|
||||
|
||||
use app\expose\enum\builder\Enum;
|
||||
|
||||
class Method extends Enum
|
||||
{
|
||||
const WECHAT_AND_SMS = [
|
||||
'label' => '微信+短信',
|
||||
'value' => 'wechat_and_sms'
|
||||
];
|
||||
const WECHAT_FIRST = [
|
||||
'label' => '微信优先',
|
||||
'value' => 'wechat_first'
|
||||
];
|
||||
const SMS_FIRST = [
|
||||
'label' => '短信优先',
|
||||
'value' => 'sms_first'
|
||||
];
|
||||
const WECHAT_ONLY = [
|
||||
'label' => '仅微信',
|
||||
'value' => 'wechat_only'
|
||||
];
|
||||
const SMS_ONLY = [
|
||||
'label' => '仅短信',
|
||||
'value' => 'sms_only'
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user