| 12345678910111213141516171819202122 |
- <?php
- /**
- * 用途:花店跑腿满减规则模型
- * 谁用:花店系统(hdApp 配送方式设置页)
- * 解决什么问题:存储跑腿配送方式下的满减/免运费规则(xhPsReduceRule)
- */
- namespace bizHd\order\models;
- use bizHd\base\models\Base;
- class PsReduceRule extends Base
- {
- /**
- * 返回对应的数据库表名
- * @return string
- */
- public static function tableName()
- {
- return 'xhPsReduceRule';
- }
- }
|