Files
huangjingfen/pro_v3.5.1/app/dao/other/ExpressDao.php
panchengyong c1e74d8e68 chore(php): 统一 ScottPan 文件头与注释域名替换
- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明

Made-with: Cursor
2026-03-29 11:22:58 +08:00

71 lines
1.9 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\dao\other;
use app\dao\BaseDao;
use app\model\other\Express;
/**
* 物流信息
* Class ExpressDao
* @package app\dao\other
*/
class ExpressDao extends BaseDao
{
/**
* 设置模型
* @return string
*/
protected function setModel(): string
{
return Express::class;
}
/**
* 获取物流列表
* @param array $where
* @param int $page
* @param int $limit
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getExpressList(array $where, string $field, int $page, int $limit)
{
return $this->search($where)->field($field)->order('sort DESC,id asc')
->when($page > 0 && $limit > 0, function ($query) use ($page, $limit) {
$query->page($page, $limit);
})->select()->toArray();
}
/**
* 指定的条件获取物流信息以数组返回
* @param array $where
* @param string $field
* @param string $key
* @return array
*/
public function getExpress(array $where, string $field, string $key)
{
return $this->search($where)->order('id DESC')->column($field, $key);
}
/**
* 通过code获取一条信息
* @param string $code
* @param string $field
* @return array|\think\Model|null
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getExpressByCode(string $code, string $field = '*')
{
return $this->getModel()->field($field)->where('code', $code)->find();
}
}