255], ]; } /** * @inheritdoc */ public function attributeLabels() { return [ 'id' => 'ID', 'store_id' => 'Store ID', 'name' => 'Name', 'mobile' => 'Mobile', 'address' => 'Address', 'is_delete' => 'Is Delete', 'addtime' => 'Addtime', 'longitude' => 'Longitude', 'latitude' => 'Latitude', 'score' => '评分 1~5', 'cover_url' => '门店大图', 'pic_url' => '门店小图', 'shop_time' => '营业时间', 'content' => '门店介绍', 'is_default' => '是否设为默认 0--否 1--是 (只能设置一个门店为默认门店)', ]; } public function getShopPic() { return $this->hasMany(ShopPic::className(), ['shop_id'=>'id'])->where(['is_delete'=>0]); } }