ThinkPhp 添加模型类

-----------------------------------------------

<?php
namespace appcommonmodel;
use traitsmodelSoftDelete;
use thinkModel;

class Registt extends Model
{
  //设置软删除
  protected $auto=['mail'];
  // protected $autoWriteTimestamp=true;
  // use SoftDelete;
  // protected $deletetime='delete_time';
  // //设置自动填充邀请码
public function setMailAttr($value){
  return mt_rand(10000,99999);
}

}

----------------------------------------------

原文地址:https://www.cnblogs.com/vip-deng-vip/p/8275810.html