|
...
|
...
|
@@ -249,11 +249,20 @@ class InquiryInfoController extends BaseController |
|
|
|
* @method :post
|
|
|
|
* @time :2023/8/18 9:02
|
|
|
|
*/
|
|
|
|
public function getTimeZone(){
|
|
|
|
$areaTimezoneModel = new AreaTimezone();
|
|
|
|
$list = $areaTimezoneModel->list($this->map);
|
|
|
|
public function getTimeZone(AreaTimezone $areaTimezone){
|
|
|
|
$list = $areaTimezone->list($this->map);
|
|
|
|
$this->response('success',Code::SUCCESS,$list);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :根据名称获取内部统计
|
|
|
|
* @name :internalCount
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2023/8/18 9:18
|
|
|
|
*/
|
|
|
|
public function getInternalCount(InquiryInfoLogic $inquiryInfoLogic){
|
|
|
|
$list = $inquiryInfoLogic->getManagerCount();
|
|
|
|
$this->response('success',Code::SUCCESS,$list);
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|