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