| 12345678910111213141516171819202122 |
- <?php
- /**
- * 用途:配送方式说明项模型
- * 谁用:供货商系统
- * 解决什么问题:存储每种配送方式下的说明文字、颜色、加粗等配置
- */
- namespace bizGhs\order\models;
- use bizGhs\base\models\Base;
- class ShExplain extends Base
- {
- /**
- * 返回对应的数据库表名
- * @return string
- */
- public static function tableName()
- {
- return 'xhShExplain';
- }
- }
|