City.php 355 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * @package merchant
  4. *
  5. * @author xaboy
  6. * @day 2020/6/1
  7. *
  8. *
  9. */
  10. namespace app\common\model\movie\city;
  11. use app\common\model\BaseModel;
  12. class City extends BaseModel
  13. {
  14. public static function tablePk(): ?string
  15. {
  16. return 'id';
  17. }
  18. public static function tableName(): string
  19. {
  20. return 'movie_city';
  21. }
  22. }