StoreRefundStatus.php 308 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\common\model\store\order;
  3. use app\common\model\BaseModel;
  4. class StoreRefundStatus extends BaseModel
  5. {
  6. public static function tablePk(): ?string
  7. {
  8. return null;
  9. }
  10. public static function tableName(): string
  11. {
  12. return 'store_refund_status';
  13. }
  14. }