- <?php
- namespace app\common\model;
- /**
- * Cp回调管理表
- * @author Administrator
- */
- class Cpurl extends \think\Model
- {
- protected $pk = 'id';
- protected $table = 'cy_cpurl';
- protected $dateFormat = false; //时间戳格式不自动转换
- protected $autoWriteTimestamp = true;
- protected $updateTime = false;
- }
|