mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
35 lines
727 B
PHP
35 lines
727 B
PHP
<?php
|
|
|
|
namespace app\data\controller;
|
|
|
|
use think\admin\Controller;
|
|
|
|
/**
|
|
* 支付行为记录
|
|
* Class ShopPaymentItem
|
|
* @package app\data\controller
|
|
*/
|
|
class ShopPaymentItem extends Controller
|
|
{
|
|
/**
|
|
* 绑定数据
|
|
* @var string
|
|
*/
|
|
private $table = 'ShopPaymentItem';
|
|
|
|
/**
|
|
* 支付行为记录
|
|
* @auth true
|
|
* @menu true
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function index()
|
|
{
|
|
$this->title = '支付行为记录';
|
|
$query = $this->_query($this->table);
|
|
$query->like('order_no')->order('id desc')->page();
|
|
}
|
|
|
|
} |