OrderItem.php 730 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace addons\WangDianTong\common\expand\sdk\wangdian\model;
  3. use addons\WangDianTong\common\expand\sdk\wangdian\Model;
  4. use addons\WangDianTong\common\expand\sdk\wangdian\ModelInterface;
  5. /**
  6. * @property string $oid
  7. * @property int $status
  8. * @property int $refund_status
  9. * @property string $goods_id
  10. * @property string $spec_id
  11. * @property string $goods_no
  12. * @property string $spec_no
  13. * @property string $goods_name
  14. * @property string $spec_name
  15. * @property int $num
  16. * @property string $price
  17. * @property string $adjust_amount
  18. * @property string $discount
  19. * @property string $share_discount
  20. * @property string $remark
  21. * @property int $cid
  22. */
  23. class OrderItem extends Model implements ModelInterface
  24. {
  25. }