CrmImportRetrieveLog.php 262 B

12345678910111213141516
  1. <?php
  2. namespace app\model;
  3. use think\Model;
  4. class CrmImportRetrieveLog extends Model
  5. {
  6. /**
  7. * 处理
  8. */
  9. public function getAddtimeAttr($value){
  10. if (empty($value)) return $value;
  11. return date('Y-m-d H:i:s',(int)$value);
  12. }
  13. }