PurchaseOrderItem.php 314 B

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