CscSetting.php 365 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Administrator
  5. * Date: 2018/10/31
  6. * Time: 16:56
  7. */
  8. namespace app\common\model;
  9. use think\Model;
  10. class CscSetting extends Model
  11. {
  12. protected $table = 'cy_csc_setting';
  13. /*
  14. *获取列表内容
  15. */
  16. public function getList()
  17. {
  18. return $this->field('id,value,name,title')->paginate();
  19. }
  20. }