Express.php 466 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * @package merchant
  4. * @Author: Qinii
  5. * @Date: 2020/5/13
  6. */
  7. namespace app\common\model\store\shipping;
  8. use app\common\model\BaseModel;
  9. class Express extends BaseModel
  10. {
  11. /**
  12. * @Author:Qinii
  13. * @return string
  14. */
  15. public static function tablePk():string
  16. {
  17. return 'id';
  18. }
  19. /**
  20. * @Author:Qinii
  21. * @return string
  22. */
  23. public static function tableName():string
  24. {
  25. return 'express';
  26. }
  27. }