| 12345678910111213141516171819202122 |
- <?php
- /**
- * 用途:花店配送方式配置主表模型
- * 谁用:花店系统(hdApp 配送方式设置页)
- * 解决什么问题:存储送货、自取、跑腿、快递、物流等配送方式的基础配置(xhPsMethod)
- */
- namespace bizHd\order\models;
- use bizHd\base\models\Base;
- class PsMethod extends Base
- {
- /**
- * 返回对应的数据库表名
- * @return string
- */
- public static function tableName()
- {
- return 'xhPsMethod';
- }
- }
|