| 123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace common\models;
- /**
- * This is the model class for table "xhShop".
- *
- * @property int $id
- * @property string $businessName 门店名称,商户名称
- * @property string $branchName 分店名称
- * @property int $sjId 商户id
- * @property string $poiId 微信门店 wifi等通用的唯一id
- * @property string $shopId shopId 适用于wifi
- * @property string $shopLat 商店的纬度
- * @property string $shopLong 商店的经度
- * @property string $shopProvince 省
- * @property string $shopCity 市
- * @property string $shopDist 区县
- * @property string $shopAddress 详细街道地址
- * @property string $telephone 电话
- * @property string $introduction 简介
- * @property int $addTime 添加时间,时间戳格式
- * @property string $createTime 创建时间
- * @property string $updateTime
- */
- class xhShop extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhShop';
- }
- }
|