City.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\common\model\store\shipping;
  12. use app\common\model\BaseModel;
  13. class City extends BaseModel
  14. {
  15. /**
  16. * Author:Qinii
  17. * Date: 2020/5/6
  18. * Time: 14:20
  19. * @return string
  20. */
  21. public static function tablePk(): string
  22. {
  23. return 'id';
  24. }
  25. /**
  26. * Author:Qinii
  27. * Date: 2020/5/6
  28. * Time: 14:20
  29. * @return string
  30. */
  31. public static function tableName(): string
  32. {
  33. return 'system_city';
  34. }
  35. }