12345678910111213141516171819 |
- <?php
- namespace app\common\model;
- use think\Model;
- class Alisms extends Model
- {
- // 设置字段信息
- protected $schema = [
- 'id' => 'int',
- 'accesskeyid' => 'string',
- 'accesskeysecret' => 'string',
- 'signname' => 'string',
- 'register' => 'string',
- 'getpassword' => 'string',
- 'mobilelogin' => 'string'
- ];
-
- }
|