12345678910111213141516171819 |
- <?php
- namespace app\common\model;
- use think\Model;
- class Sinpage extends Model
- {
- // 设置字段信息
- protected $schema = [
- 'id' => 'int',
- 'aboutus' => 'string',
- 'privacy' => 'string',
- 'service' => 'string',
- 'contact' => 'string',
- 'apptreaty' => 'string',
- 'wxmp' => 'string'
- ];
-
- }
|