消费统计界面基础表格和搜索

This commit is contained in:
wanyongkang
2020-11-20 16:02:54 +08:00
parent deb09ebb2f
commit 1b9e56b24a
8 changed files with 670 additions and 26 deletions

View File

@@ -0,0 +1,23 @@
<?php
/*
* @Descripttion:
* @version:
* @Author: kangkang
* @Date: 2020-10-16 14:44:02
* @LastEditors: kangkang
* @LastEditTime: 2020-11-18 16:42:07
*/
namespace app\manager\model;
use fastphp\base\Model;
class FollowRecord extends Model
{
protected $table = 'follow_record';
public function getNewRecord($where)
{
return $this->where($where)->order()->limit('3')->fetchAll();
}
}