StoreOrderStatus.php 577 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace app\common\model\store\order;
  3. use app\common\model\BaseModel;
  4. /**
  5. * Class StoreOrderStatus
  6. * @package app\common\model\store\order
  7. * @author zfy
  8. * @day 2020/6/12
  9. */
  10. class StoreOrderStatus extends BaseModel
  11. {
  12. /**
  13. * @return string|null
  14. * @author zfy
  15. * @day 2020/6/12
  16. */
  17. public static function tablePk(): ?string
  18. {
  19. return null;
  20. }
  21. /**
  22. * @return string
  23. * @author zfy
  24. * @day 2020/6/12
  25. */
  26. public static function tableName(): string
  27. {
  28. return 'store_order_status';
  29. }
  30. }