China.php 294 B

123456789101112131415161718192021
  1. <?php
  2. namespace app\common\model;
  3. use app\http\DbOperation;
  4. use think\Model;
  5. class China extends Model
  6. {
  7. use DbOperation;
  8. /**
  9. * @var string
  10. */
  11. protected $name = 'china';
  12. /**
  13. * @var bool
  14. */
  15. protected $autoWriteTimestamp = false;
  16. }