xhShop.php 979 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. namespace common\models;
  3. /**
  4. * This is the model class for table "xhShop".
  5. *
  6. * @property int $id
  7. * @property string $businessName 门店名称,商户名称
  8. * @property string $branchName 分店名称
  9. * @property int $sjId 商户id
  10. * @property string $poiId 微信门店 wifi等通用的唯一id
  11. * @property string $shopId shopId 适用于wifi
  12. * @property string $shopLat 商店的纬度
  13. * @property string $shopLong 商店的经度
  14. * @property string $shopProvince 省
  15. * @property string $shopCity 市
  16. * @property string $shopDist 区县
  17. * @property string $shopAddress 详细街道地址
  18. * @property string $telephone 电话
  19. * @property string $introduction 简介
  20. * @property int $addTime 添加时间,时间戳格式
  21. * @property string $createTime 创建时间
  22. * @property string $updateTime
  23. */
  24. class xhShop extends xhBaseModel
  25. {
  26. /**
  27. * @inheritdoc
  28. */
  29. public static function tableName()
  30. {
  31. return 'xhShop';
  32. }
  33. }