淘宝退款、用户提现筛选

This commit is contained in:
wanyongkang
2020-12-07 17:35:27 +08:00
parent 24ff580958
commit 9c816fadb7
5 changed files with 196 additions and 38 deletions

View File

@@ -4,8 +4,8 @@
* @version:
* @Author: kangkang
* @Date: 2020-10-14 09:56:09
* @LastEditors: kangkang
* @LastEditTime: 2020-10-14 09:57:12
* @LastEditors: Please set LastEditors
* @LastEditTime: 2020-12-07 15:10:54
*/
namespace app\order\model;
@@ -16,6 +16,14 @@ class TbRefund extends Model
{
protected $table = 'sell_taobao_refund';
/**
* @description: 处理搜索
* @param {*}
* @return {*}
*/
public function search($where = [], $fields = '*', $order = 'id desc', $limit = '50', $where_str = '')
{
return $this->field($fields)->where($where)->where($where_str)->order($order)->limit($limit)->fetchAll();
}
}