You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.5 KiB
47 lines
1.5 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\services\store;
|
|
|
|
|
|
use app\dao\store\StoreDrinkSaveDao;
|
|
use app\services\BaseServices;
|
|
use think\exception\ValidateException;
|
|
|
|
/**
|
|
* 门店用户
|
|
* Class StoreUser
|
|
* @package app\services\store
|
|
* @mixin StoreUserDao
|
|
*/
|
|
class StoreDrinkSaveServices extends BaseServices
|
|
{
|
|
/**
|
|
* 构造方法
|
|
* StoreUser constructor.
|
|
* @param StoreUserDao $dao
|
|
*/
|
|
public function __construct(StoreDrinkSaveDao $dao)
|
|
{
|
|
$this->dao = $dao;
|
|
}
|
|
public function getlist($where,$page,$limit){
|
|
$data['list'] = $this->dao->getList($where, '*', [], $page, $limit);
|
|
if(!empty($data['list'])){
|
|
foreach ($data['list'] as &$item){
|
|
$item['create'] = date('Y-m-d H:i:s',$item['create']);
|
|
// $item['out_time'] = date('Y-m-d',$item['out_time']);
|
|
}
|
|
}
|
|
$data['count'] = $this->dao->getCount($where);
|
|
return $data;
|
|
}
|
|
}
|
|
|