Cpurl.php 386 B

12345678910111213141516
  1. <?php
  2. namespace app\common\model;
  3. /**
  4. * Cp回调管理表
  5. * @author Administrator
  6. */
  7. class Cpurl extends \think\Model
  8. {
  9. protected $pk = 'id';
  10. protected $table = 'cy_cpurl';
  11. protected $dateFormat = false; //时间戳格式不自动转换
  12. protected $autoWriteTimestamp = true;
  13. protected $updateTime = false;
  14. }