UserParam.php 408 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class UserParam extends Model
  5. {
  6. // 设置字段信息
  7. protected $schema = [
  8. 'id' => 'int',
  9. 'redmoney' => 'int',
  10. 'usernumber' => 'int',
  11. 'shareintegral' => 'int',
  12. 'postintegral' => 'int',
  13. 'inttomoney' => 'int',
  14. 'minintegral' => 'int',
  15. 'intrecharge' => 'int',
  16. 'picregworker' => 'string',
  17. 'intregworker' => 'int'
  18. ];
  19. }