Commit d6b11851 authored by clone's avatar clone

job

parent abb4e987
<?php
namespace app\task\controller;
use app\model\GHouses;
/**
* Created by PhpStorm.
* User : zw
* Date : 2018/9/4
* Time : 10:37
* Intro:
*/
class JobTask
{
private $gHouseModel;
public function __construct()
{
$this->gHouseModel = new GHouses();
}
public function updateShopTask()
{
//todo 1.先查询出所有上架街铺,2.修改标题地址和业态
$field = "id";
$params = [];
$params["status"] = 1;
$params["status"] = 1;
$this->gHouseModel->getShopListByTime($field,$params);
}
private function updateIndustryType(){
}
}
\ 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