| 12345678910111213141516171819 |
- <?php
- namespace bizGhs\order\models;
- use bizGhs\base\models\Base;
- /**
- * 供货商销售单明细 xhGhsOrderItem
- * nextRefundNum:跨天售后已退数量;当天已退 = refundNum - nextRefundNum
- */
- class OrderItem extends Base
- {
- public static function tableName()
- {
- return 'xhGhsOrderItem';
- }
- }
|