HomePageModuleConfig.php 347 B

1234567891011121314151617
  1. <?php
  2. namespace bizHd\homePageConfig\models;
  3. use bizHd\base\models\Base;
  4. /**
  5. * 门店首页模块配置表模型
  6. * 对应表 xhHomePageModuleConfig,按 shopId+moduleKey 唯一区分一条配置记录
  7. */
  8. class HomePageModuleConfig extends Base
  9. {
  10. public static function tableName()
  11. {
  12. return 'xhHomePageModuleConfig';
  13. }
  14. }