| 1234567891011121314151617 |
- <?php
- namespace bizHd\homePageConfig\models;
- use bizHd\base\models\Base;
- /**
- * 门店首页模块配置表模型
- * 对应表 xhHomePageModuleConfig,按 shopId+moduleKey 唯一区分一条配置记录
- */
- class HomePageModuleConfig extends Base
- {
- public static function tableName()
- {
- return 'xhHomePageModuleConfig';
- }
- }
|