ComplexServer.php 345 B

1234567891011121314151617
  1. <?php
  2. namespace app\common\model;
  3. /**
  4. * 渠道-区服数据表
  5. * @author Administrator
  6. */
  7. class ComplexServer extends \think\Model
  8. {
  9. protected $pk = 'id';
  10. protected $table = 'nw_complex_server';
  11. protected $autoWriteTimestamp = true;
  12. protected $createTime = 'create_time';
  13. protected $dateFormat = 'Y-m-d H:i:s';
  14. }