|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @remark :
|
|
|
|
* @name :TicketDailyManageCount.php
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2025/8/7 17:52
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Models\Ticket;
|
|
|
|
|
|
|
|
use App\Models\Base;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :工单日统计:按照人员统计(周)
|
|
|
|
* @name :TicketDailyManageCount
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2025/8/7 17:53
|
|
|
|
*/
|
|
|
|
class TicketWeekManageCount extends Base
|
|
|
|
{
|
|
|
|
protected $table = 'gl_ticket_week_manage_count';
|
|
|
|
} |
...
|
...
|
|