FundConfigModel.php 744 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace App\Module\Fund\Models;
  3. use UCore\ModelCore;
  4. /**
  5. * 账户种类配置表
  6. *
  7. * 用于存储系统支持的各种账户种类,如可用账户、冻结账户等。
  8. * 同一个币种(FundCurrencyModel)可以有多个不同的账户种类。
  9. *
  10. * field start
  11. * @property int $id 自增
  12. * @property string $name 账户种类名称
  13. * @property int $create_time 创建时间
  14. * @property int $update_time 更新时间
  15. * field end
  16. */
  17. class FundConfigModel extends ModelCore
  18. {
  19. protected $table = 'fund_config';
  20. // attrlist start
  21. protected $fillable = [
  22. 'id',
  23. 'name',
  24. 'create_time',
  25. 'update_time',
  26. ];
  27. // attrlist end
  28. public $timestamps = false;
  29. }