baji/app/common/model/Delivery.php
2025-03-03 14:47:45 +08:00

29 lines
564 B
PHP
Executable File

<?php
namespace app\common\model;
use app\common\model\Base;
use think\Model;
use app\common\model\ProfitMoney;
use app\common\model\ProfitIntegral;
use app\common\model\ProfitScore;
class Delivery extends Base
{
// 设置当前模型对应的完整数据表名称
protected $table = 'delivery';
/**
* 获取单条数据
*/
public static function getInfo($where = [], $field = '*')
{
$data = self::where($where)
->field($field)
->find();
return $data;
}
}