Files
BlackFruit-UI/plugins/addon/example/model/IdcsmartTicketUpstreamModel.php
yiqiu cbd6250967
All checks were successful
continuous-integration/drone/push Build is passing
修改插件
2025-11-21 00:01:45 +08:00

27 lines
698 B
PHP

<?php
namespace addon\idcsmart_ticket\model;
use think\Model;
/*
* @author wyh
* @time 2024-06-17
*/
class IdcsmartTicketUpstreamModel extends Model
{
protected $name = 'addon_idcsmart_ticket_upstream';
# 设置字段信息
protected $schema = [
'id' => 'int',
'host_id' => 'int',
'upstream_host_id' => 'int',
'ticket_id' => 'int',
'upstream_ticket_id' => 'int',
'create_time' => 'int',
'update_time' => 'int',
'delivery_status' => 'int',
];
}