| 1234567891011121314151617181920 |
- <?php
- namespace bizGhs\order\models;
- use bizGhs\base\models\Base;
- /**
- * 原销售单与冲销单的关联记录模型
- * 用于“售后转冲销单”场景:记录某张原销售单被哪些冲销单冲销过多少金额,
- * 配合 xhGhsOrder.hasForward/forwardPrice 缓存字段做累计冲销上限校验。
- */
- class OrderForward extends Base
- {
- public static function tableName()
- {
- return 'xhGhsOrderForward';
- }
- }
|