new files

This commit is contained in:
panchengyong
2026-03-07 22:29:07 +08:00
parent cd7e80b502
commit 7acbf45ff7
12516 changed files with 1808447 additions and 194 deletions

View File

@@ -0,0 +1,33 @@
<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\services\agent;
use app\dao\agent\AgentLevelTaskRecordDao;
use app\services\BaseServices;
use think\annotation\Inject;
/**
* 分销等级任务完成记录
* Class AgentLevelTaskRecordServices
* @package app\services\agent
* @mixin AgentLevelTaskRecordDao
*/
class AgentLevelTaskRecordServices extends BaseServices
{
/**
* @var AgentLevelTaskRecordDao
*/
#[Inject]
protected AgentLevelTaskRecordDao $dao;
}