FundExternalModel.php 513 B

123456789101112131415161718192021222324
  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. class FundExternalModel extends ModelCore
  17. {
  18. protected $table = 'fund_external';
  19. public $timestamps = false;
  20. }