OrderItem.php 326 B

12345678910111213141516171819
  1. <?php
  2. namespace bizGhs\order\models;
  3. use bizGhs\base\models\Base;
  4. /**
  5. * 供货商销售单明细 xhGhsOrderItem
  6. * nextRefundNum:跨天售后已退数量;当天已退 = refundNum - nextRefundNum
  7. */
  8. class OrderItem extends Base
  9. {
  10. public static function tableName()
  11. {
  12. return 'xhGhsOrderItem';
  13. }
  14. }