1234567891011121314151617181920212223 |
- <?php
- namespace app\common\model;
- use think\Model;
- class UserParam extends Model
- {
- // 设置字段信息
- protected $schema = [
- 'id' => 'int',
- 'redmoney' => 'int',
- 'usernumber' => 'int',
- 'shareintegral' => 'int',
- 'postintegral' => 'int',
- 'inttomoney' => 'int',
- 'minintegral' => 'int',
- 'intrecharge' => 'int',
- 'picregworker' => 'string',
- 'intregworker' => 'int'
- ];
-
- }
|