截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DevRegion.php 213B

123456789101112
  1. <?php
  2. namespace app\common\model\dev;
  3. use app\common\basics\Models;
  4. class DevRegion extends Models
  5. {
  6. static function getAreaName($id)
  7. {
  8. return static::where('id', $id)->value('name', '');
  9. }
  10. }