tp/app/model/System/SmsTask.php
2026-04-01 10:12:37 +08:00

30 lines
604 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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',
];
}