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.
 
 
 
 
 
 
zhishifufei_php/application/web/model/merchant/AgentUser.php

54 lines
1.7 KiB

<?php
// +----------------------------------------------------------------------
// | 天诚科技 [ 刘海东 17600099397赋能开发者,助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2020 https://www.tczxkj.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed 该系统并不是自由软件,未经许可不能去掉相关版权
// +----------------------------------------------------------------------
// | Author:甘肃天诚志信电子商务有限公司 刘海东 联系电话维系17600099397
// +----------------------------------------------------------------------
namespace app\web\model\merchant;
use traits\ModelTrait;
use basic\ModelBasic;
/**
* Class AgentUser 讲师申请
* @package app\web\model\merchant
*/
class AgentUser extends ModelBasic
{
use ModelTrait;
/**增加讲师余额
* @param $mer_id
* @param $price
*/
public static function setAgentUserNowMoney($mer_id, $price)
{
return self::where('id', $mer_id)->setInc('now_money', $price);
}
/**减讲师余额
* @param $mer_id
* @param $price
* @return int|true
* @throws \think\Exception
*/
public static function decAgentUserNowMoney($mer_id, $price)
{
return self::where('id', $mer_id)->setDec('now_money', $price);
}
/**获取$mer_id
* @param $uid
* @return mixed
*/
public static function getMerId($uid)
{
return self::where(['uid' => $uid, 'status' => 1, 'is_del' => 0, 'estate' => 1])->value('id');
}
}