2019-09-06 23:53:10 +08:00

16 lines
324 B
PHP
Executable File

<?php
namespace wstmart\common\model;
/**
* ============================================================================
* 快递业务处理类
*/
use think\Db;
class Express extends Base{
/**
* 获取快递列表
*/
public function listQuery(){
return $this->where('dataFlag',1)->select();
}
}