| 12345678910111213141516171819202122 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2018/10/31
- * Time: 16:56
- */
- namespace app\common\model;
- use think\Model;
- class CscSetting extends Model
- {
- protected $table = 'cy_csc_setting';
- /*
- *获取列表内容
- */
- public function getList()
- {
- return $this->field('id,value,name,title')->paginate();
- }
- }
|