You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.7 KiB
66 lines
1.7 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 天诚科技 [ 刘海东 17600099397赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2020 https://www.tczxkj.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed 该系统并不是自由软件,未经许可不能去掉相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author:甘肃天诚志信电子商务有限公司 刘海东 联系电话维系17600099397
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
namespace behavior\wap;
|
|
|
|
|
|
class UserBehavior
|
|
{
|
|
/**
|
|
* 管理员后台给用户添加金额
|
|
* @param $user
|
|
* $user 用户信息
|
|
* @param $money
|
|
* $money 添加的金额
|
|
*/
|
|
public static function adminAddMoney($user, $money)
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* 管理员后台给用户减少金额
|
|
* @param $user
|
|
* $user 用户信息
|
|
* @param $money
|
|
* $money 减少的金额
|
|
*/
|
|
public static function adminSubMoney($user, $money)
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* 管理员后台给用户增加的积分
|
|
* @param $user
|
|
* $user 用户信息
|
|
* @param $integral
|
|
* $integral 增加的积分
|
|
*/
|
|
public static function adminAddIntegral($user, $integral)
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* 管理员后台给用户减少的积分
|
|
* @param $user
|
|
* $user 用户信息
|
|
* @param $integral
|
|
* $integral 减少的积分
|
|
*/
|
|
public static function adminSubIntegral($user, $integral)
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|