From 3bad1c11833fe8e41988001e5f3b7bb410a0fa05 Mon Sep 17 00:00:00 2001 From: chenbo <709206448@qq.com> Date: Fri, 10 Nov 2023 17:01:30 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E5=BE=AE=E4=BF=A1=E6=94=AF=E4=BB=98-?= =?UTF-8?q?=E5=AD=90=E5=95=86=E6=88=B7=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/app/common/model/SubMerchant.php | 57 +++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 server/app/common/model/SubMerchant.php diff --git a/server/app/common/model/SubMerchant.php b/server/app/common/model/SubMerchant.php new file mode 100644 index 0000000..0f3229a --- /dev/null +++ b/server/app/common/model/SubMerchant.php @@ -0,0 +1,57 @@ +where(['province_code' => $this->province])->value('province_name'); + } + + public function getCityNameAttr($value) + { + return Db::name('geo_city')->where(['city_code' => $this->city])->value('city_name'); + } + + public function getAreaNameAttr($value) + { + return Db::name('geo_area')->where(['area_code' => $this->area])->value('area_name'); + } + + public function getStreetNameAttr($value) + { + return Db::name('geo_street')->where(['street_code' => $this->street])->value('street_name'); + } + + public function getVillageNameAttr($value) + { + return Db::name('geo_village')->where(['village_code' => $this->village])->value('village_name'); + } + +} \ No newline at end of file