FundExternalModel.php 676 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace App\Module\Fund\Models;
  3. use UCore\ModelCore;
  4. /**
  5. * 外部资金表
  6. * @property int $id
  7. * @property int $user_id 用户ID
  8. * @property int $fund_id 资金ID
  9. * @property int $amount 金额
  10. * @property string $operate_id 操作ID
  11. * @property string $operate_type 操作类型
  12. * @property int $status 状态
  13. * @property int $create_time
  14. * @property int $update_time
  15. */
  16. /**
  17. * App\Module\Fund\Models\FundExternalModel
  18. *
  19. * field start
  20. * field end
  21. */
  22. class FundExternalModel extends ModelCore
  23. {
  24. protected $table = 'fund_external';
  25. // attrlist start
  26. protected $fillable = [
  27. ];
  28. // attrlist end
  29. public $timestamps = false;
  30. }