24 lines
447 B
PHP
24 lines
447 B
PHP
<?php
|
|
/*
|
|
* @Descripttion:
|
|
* @version:
|
|
* @Author: kangkang
|
|
* @Date: 2020-10-14 20:25:53
|
|
* @LastEditors: kangkang
|
|
* @LastEditTime: 2020-10-14 20:26:11
|
|
*/
|
|
|
|
|
|
namespace app\order\model;
|
|
|
|
use fastphp\base\Model;
|
|
|
|
class UserChargeOrder extends Model
|
|
{
|
|
protected $table = 'user_charge_order';
|
|
|
|
public function updateTake($where = [],$where2='', $data = [])
|
|
{
|
|
return $this->where($where)->where($where2)->update($data);
|
|
}
|
|
} |