Commit f11a2d63 authored by jianghaiming's avatar jianghaiming

update:商铺

parent 35b2e6f2
<?php
namespace App\Models\shop\mysql;
use Api\PhpUtils\Mysql\MysqlBase;
class Shop extends MysqlBase
{
const TABLE_NAME = 'shop';
const CONFIG_INDEX = 'goods';
const PRIMARY_KEY = 'shop_id';
public static function getRecord($where, $colums = [])
{
if (empty($colums)) {
$colums = '*';
}
return self::get($colums, $where);
}
public static function getRecordMaster($where, $colums = [])
{
if (empty($colums)) {
$colums = '*';
}
return self::selectMaster($colums, $where);
}
public static function insertRecord($colums)
{
return self::insert($colums);
}
public static function updateRecord($colums, $where)
{
return self::update($colums, $where);
}
public static function save($data, $where = [])
{
if (empty($where)) {
return self::insert($data);
}
return self::update($data, $where);
}
public static function deleteRecord($where)
{
return self::delete($where);
}
public static function getRecords($where, $colums = [])
{
if (empty($colums)) {
$colums = '*';
}
return self::select($colums, $where);
}
public static function getCount($where)
{
return self::count($where);
}
}
<?php
namespace App\Models\shop\mysql;
use Api\PhpUtils\Mysql\MysqlBase;
class SubShop extends MysqlBase
{
const TABLE_NAME = 'sub_shop';
const CONFIG_INDEX = 'goods';
const PRIMARY_KEY = 'stores_id';
public static function getRecord($where, $colums = [])
{
if (empty($colums)) {
$colums = '*';
}
self::get($colums, $where);
}
public static function getRecordMaster($where, $colums = [])
{
if (empty($colums)) {
$colums = '*';
}
return self::selectMaster($colums, $where);
}
public static function insertRecord($colums)
{
return self::insert($colums);
}
public static function updateRecord($colums, $where)
{
return self::update($colums, $where);
}
public static function save($data, $where = [])
{
if (empty($where)) {
return self::insert($data);
}
return self::update($data, $where);
}
public static function deleteRecord($where)
{
return self::delete($where);
}
public static function getRecords($where, $colums = [])
{
if (empty($colums)) {
$colums = '*';
}
return self::select($colums, $where);
}
public static function getCount($where)
{
return self::count($where);
}
}
<?php
use App\Base\Base;
use App\Models\shop\mysql\Shop;
use App\Models\shop\mysql\SubShop;
// use Validate\ShopValidate;
// use App\Exception\custom\ShopException;
class ShopController extends Base
{
public function get_shop_listAction()
{
//$params = $this->getRequest()->getRequest();
$where['life_account_id'] = 0;
$subShop = SubShop::getRecord($where);
print_r($subShop);
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment