| 12345678910111213141516171819202122 |
- <?php
- /**
- * 用途:跑腿满减规则模型
- * 谁用:供货商系统
- * 解决什么问题:存储跑腿配送方式下的满减/免运费规则(如:满 X 扎且满 Y 元,免 Z 公里内跑腿费)
- */
- namespace bizGhs\order\models;
- use bizGhs\base\models\Base;
- class ShReduceRule extends Base
- {
- /**
- * 返回对应的数据库表名
- * @return string
- */
- public static function tableName()
- {
- return 'xhShReduceRule';
- }
- }
|