FundCurrencyModel.php 919 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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\FundCurrencyModel
  13. *
  14. * field start
  15. * @property int $id 自增
  16. * @property string $identification 资金标识
  17. * @property string $icon 资金标识
  18. * @property string $name 资金名字
  19. * @property string $data1 数据
  20. * @property int $create_time
  21. * @property int $update_time 更新时间
  22. * field end
  23. */
  24. class FundCurrencyModel extends ModelCore
  25. {
  26. protected $table = 'fund_currency';
  27. // attrlist start
  28. protected $fillable = [
  29. 'id',
  30. 'identification',
  31. 'icon',
  32. 'name',
  33. 'data1',
  34. 'create_time',
  35. 'update_time',
  36. ];
  37. // attrlist end
  38. public $timestamps = false;
  39. }