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