ShopIdentity.php 241 B

123456789101112131415161718
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\common\model;
  4. class ShopIdentity extends BaseModel
  5. {
  6. CONST ZD_SHOP_ID = 1;
  7. // 定义表名
  8. protected $name = 'shop_identity';
  9. // 定义主键
  10. protected $pk = 'id';
  11. }