thinkphp6 关联模型如何查询已经软删除的数据
2021-01-18 02:14
标签:cer use 关联 hasone first ret color extends rem thinkphp6 关联模型如何查询已经软删除的数据 在关联模型的时候加上: 就是移除使用软删除的意思。 既然移除了软删除,那么不管是不是软删除的数据,就都可以查询出来了。 thinkphp6 关联模型如何查询已经软删除的数据 标签:cer use 关联 hasone first ret color extends rem 原文地址:https://www.cnblogs.com/phpyangbo/p/13355196.htmlphp
namespace app\woman\model;
use think\Model;
use think\model\concern\SoftDelete;
class Woman extends Model
{
use SoftDelete;
protected $deleteTime = ‘delete_time‘;
// 模型初始化
protected static function init()
{
//TODO:初始化内容
}
/**
* 关联首次检查记录表模型
* @return $this
*/
public function womanFirstInspect()
{
return $this->hasOne(WomanFirstInspect::class)->removeOption(‘soft_delete‘);
}
}
->removeOption(‘soft_delete‘);
文章标题:thinkphp6 关联模型如何查询已经软删除的数据
文章链接:http://soscw.com/index.php/essay/43469.html