Institution.php 590 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. namespace app\admin\model\institution;
  3. use think\Model;
  4. class Institution extends Model
  5. {
  6. // 表名
  7. protected $table = 'institution';
  8. // 设置当前模型的数据库连接
  9. protected $connection = [
  10. // 数据库表前缀
  11. 'prefix' => '',
  12. ];
  13. // 自动写入时间戳字段
  14. protected $autoWriteTimestamp = false;
  15. // 定义时间戳字段名
  16. protected $createTime = false;
  17. protected $updateTime = false;
  18. protected $deleteTime = false;
  19. // 追加属性
  20. protected $append = [
  21. ];
  22. }