TicketDailyDeptCount.php 427 字节
<?php
/**
 * @remark :
 * @name   :TicketDailyDeptCount.php
 * @author :lyh
 * @method :post
 * @time   :2025/8/7 17:51
 */

namespace App\Models\Ticket;

use App\Models\Base;

/**
 * @remark :工单日统计:按照技术组统计
 * @name   :TicketDailyDeptCount
 * @author :lyh
 * @method :post
 * @time   :2025/8/7 17:51
 */
class TicketDailyDeptCount extends Base
{
    protected $table = 'gl_ticket_daily_dept_count';
}