修改插件
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
yiqiu
2025-11-21 00:01:45 +08:00
parent 7bc68457e9
commit cbd6250967
224 changed files with 61713 additions and 18 deletions

View File

@@ -0,0 +1,25 @@
<?php
namespace addon\idcsmart_ticket\model;
use think\Model;
/*
* @author wyh
* @time 2025-05-20
*/
class IdcsmartTicketForwardModel extends Model
{
protected $name = 'addon_idcsmart_ticket_forward';
# 设置字段信息
protected $schema = [
'id' => 'int',
'ticket_id' => 'int',
'admin_id' => 'int',
'forward_admin_id' => 'int',
'ticket_type_id' => 'int',
'notes' => 'string',
'create_time' => 'int',
'update_time' => 'int',
];
}