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/wap/model/institution/Institution.php

56 lines
1.7 KiB

<?php
// +----------------------------------------------------------------------
// | 天诚科技 [ 刘海东 17600099397赋能开发者,助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2020 https://www.tczxkj.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed 该系统并不是自由软件,未经许可不能去掉相关版权
// +----------------------------------------------------------------------
// | Author:甘肃天诚志信电子商务有限公司 刘海东 联系电话维系17600099397
// +----------------------------------------------------------------------
namespace app\wap\model\institution;
use traits\ModelTrait;
use basic\ModelBasic;
use service\HookService;
use service\SystemConfigService;
/**
* Class Institution
* @package app\wap\model\institution
*/
class Institution extends ModelBasic
{
use ModelTrait;
/**增加讲师余额
* @param $mer_id
* @param $price
*/
public static function setMerchantNowMoney($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 decMerchantNowMoney($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');
}
}