基础扩展

This commit is contained in:
2025-09-16 18:18:20 +08:00
parent 96fc75c2b4
commit dfd284f255
10 changed files with 472 additions and 27 deletions

View File

@@ -0,0 +1,58 @@
<?php
namespace app\model;
use support\Log;
use support\think\Db;
// 自定义推送任务计算
class PushTaskCustom
{
/**
* 性别
*/
public static function gender($arr = []):array
{
return [];
}
/**
* 下单
*/
public static function orderHistory($arr = []):array
{
return [];
}
/**
* 下单时间
*/
public static function orderTimes($arr = []):array
{
return [];
}
/**
* 会员
*/
public static function vip($arr = []):array
{
return [];
}
/**
* 手机
*/
public static function telPhone($arr = []):array
{
return [];
}
}