This commit is contained in:
2026-04-01 10:12:37 +08:00
parent 2a6b14f698
commit e4eab9ad89
9 changed files with 1444 additions and 39 deletions
+29
View File
@@ -0,0 +1,29 @@
<?php
namespace app\model\System;
use think\Model;
/**
* 短信发送任务表(Android 网关轮询获取)
*/
class SmsTask extends Model
{
// 数据库表名
protected $name = 'mete_system_sms_tasks';
protected $type = [
'id' => 'integer',
'tid' => 'integer',
'api_key' => 'string',
'phone' => 'string',
'content' => 'string',
'status' => 'integer',
'code' => 'string',
'report_raw' => 'string',
'create_time' => 'datetime',
'update_time' => 'datetime',
'delete_time' => 'datetime',
];
}