FundConfigModel.php 720 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. namespace App\Module\Fund\Models;
  3. use UCore\ModelCore;
  4. /**
  5. * 资金配置表
  6. * @property int $id
  7. * @property string $name 配置名称
  8. * @property int $create_time
  9. * @property int $update_time
  10. */
  11. /**
  12. * App\Module\Fund\Models\FundConfigModel
  13. *
  14. * field start
  15. * @property int $id 自增
  16. * @property string $name 资金名字
  17. * @property int $create_time
  18. * @property int $update_time 更新时间
  19. * field end
  20. */
  21. class FundConfigModel extends ModelCore
  22. {
  23. protected $table = 'fund_config';
  24. // attrlist start
  25. protected $fillable = [
  26. 'id',
  27. 'name',
  28. 'create_time',
  29. 'update_time',
  30. ];
  31. // attrlist end
  32. public $timestamps = false;
  33. }