Loading...
// 使用链式调用进行查询 $result = Db::table('eb_order') ->whereBetween('create_time', [$startTime, $endTime]) ->field("DATE(FROM_UNIXTIME(create_time)) AS date, CO...
Thinkphp的消息队列是基于queue的,先检查是否安装了queue如果没有安装则使用下方代码进行安装 根据实际情况决定是否使用指定版本号composer require topthink/think-queue:v1.1.6配置队列链接信息queue.php文件fastadmin 文件位置application/extra/queue.php 原生think的基本都位于config目录...
return $Model->getList($where, $page, $limit, '*', ['BrandName', 'StoreName', 'ProductNmae', 'ProductInfo' => function ($query) { $query->with(['CateName', 'UnitInfo']); ...
//查询条件为二维数组 [[key,field,value],[key,value]] /** * 查询数据列表 * @param array $where //查询条件 二维数组[key,field,value] field省略的情况下默认为 = * @param string $field //筛选字段 * @param array $with/...
/** * 一对一关联 * 供货商ID关联供货商名称 * @return \think\model\relation\HasOne */ public function SuppName() { // hasOne(要调用的模型名称, 关联模型外键, 当前模型主键)->bind(['要返回的字段名称' => '要返回...