Region.php 236 B

123456789101112131415161718
  1. <?php
  2. namespace app\common\model;
  3. class Region extends BaseModel
  4. {
  5. public static function tablePk(): string
  6. {
  7. return 'id';
  8. }
  9. public static function tableName(): string
  10. {
  11. return 'regions';
  12. }
  13. }