mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-15 04:52:50 +00:00
41 lines
664 B
PHP
41 lines
664 B
PHP
<?php
|
|
/**
|
|
* @author: xaboy<365615158@qq.com>
|
|
* @day: 2017/11/11
|
|
*/
|
|
|
|
namespace app\models\system;
|
|
|
|
use crmeb\traits\ModelTrait;
|
|
use crmeb\basic\BaseModel;
|
|
|
|
/**
|
|
* 物流公司
|
|
* Class Express
|
|
* @package app\models\system
|
|
*/
|
|
class Express extends BaseModel
|
|
{
|
|
|
|
/**
|
|
* 数据表主键
|
|
* @var string
|
|
*/
|
|
protected $pk = 'id';
|
|
|
|
/**
|
|
* 模型名称
|
|
* @var string
|
|
*/
|
|
protected $name = 'express';
|
|
|
|
use ModelTrait;
|
|
|
|
public static function lst()
|
|
{
|
|
$model = new self;
|
|
$model = $model->where('is_show', 1);
|
|
$model = $model->order('sort DESC,id DESC');
|
|
return $model->select();
|
|
}
|
|
} |