Setting.php 266 B

12345678910111213141516171819
  1. <?php
  2. namespace app\api\model\plus\agent;
  3. use app\common\model\plus\agent\Setting as SettingModel;
  4. /**
  5. * 分销商设置模型
  6. */
  7. class Setting extends SettingModel
  8. {
  9. /**
  10. * 隐藏字段
  11. */
  12. protected $hidden = [
  13. 'update_time',
  14. ];
  15. }