AreaManage.php 352 B

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