UserGetmoneyLog.php 509 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class UserGetmoneyLog extends Model
  5. {
  6. // 设置字段信息
  7. protected $schema = [
  8. 'id' => 'int',
  9. 'userid' => 'int',
  10. 'out_trade_no' => 'string',
  11. 'money' => 'float',
  12. 'integral' => 'int',
  13. 'remark' => 'string',
  14. 'createtime' => 'int',
  15. ];
  16. // 设置字段自动转换类型
  17. protected $type = [
  18. 'createtime' => 'timestamp:Y-m-d H:i',
  19. ];
  20. }