Files

29 lines
562 B
PHP
Raw Permalink Normal View History

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\services\work;
use app\dao\work\WorkLabelDao;
use app\services\BaseServices;
use think\annotation\Inject;
/**
* 企业微信标签
* Class WorkLabelServices
* @package app\services\\work
* @mixin WorkLabelDao
*/
class WorkLabelServices extends BaseServices
{
/**
* @var WorkLabelDao
*/
#[Inject]
protected WorkLabelDao $dao;
}