Files
addons
app_download_files
extend
hyhproject
admin
app
common
conf
controller
model
AppPort.php
Articles.php
Base.php
Carts.php
Chain3.php
Chain3base.php
Ect.php
EctElevenPay.php
Favorites.php
Goods.php
GoodsAppraises.php
GoodsCats.php
Index.php
Messages.php
Orders.php
Payments.php
Shops.php
Tags.php
Users - ╕▒▒╛.php
Users.php
validate
common
home
home2
mobile2
wechat2
.htaccess
command.php
mobile
oss
static
thinkphp
upload
vendor
wxtmp
.gitignore
.htaccess
.user.ini
404.html
H5B854518.wgt
admin.php
app-release.apk
app_download.html
cash.lock
demo.php
get_startup.php
get_version.php
get_version_new.php
hyhproject.tar.gz
index.html
index.php
reg.lock
robots.txt
qlg.tsgz.moe/hyhproject/app/model/Orders.php
2019-09-06 23:53:10 +08:00

14 lines
388 B
PHP
Executable File

<?php
namespace wstmart\app\model;
use wstmart\common\model\Orders as COrders;
use think\Db;
/**
* ============================================================================
* 订单类
*/
class Orders extends COrders{
function getOrderByOrderNo($orderNo,$field='*'){
return $this->where(['dataFlag'=>1,'orderNo|orderunique'=>$orderNo])->field($field)->find();
}
}