AssetInformation.php 324 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\admin\model;
  3. use ba\Random;
  4. use think\Model;
  5. use think\facade\Db;
  6. class AssetInformation extends Model
  7. {
  8. /**
  9. * @var string 自动写入时间戳
  10. */
  11. protected $autoWriteTimestamp = true;
  12. protected $name = 'asset';
  13. public function getAssetList()
  14. {
  15. }
  16. }