58 lines
716 B
PHP
58 lines
716 B
PHP
<?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 [];
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} |