\think\model\concernSoftDelete

数据软删除

Summary

Methods
Properties
Constants
trashed()
withTrashed()
onlyTrashed()
delete()
destroy()
restore()
No public properties found
No constants found
withTrashedData()
getWithTrashedExp()
getDeleteTimeField()
withNoTrashed()
$withTrashed
N/A
No private methods found
No private properties found
N/A

Properties

$withTrashed

$withTrashed : bool

是否包含软删除数据

Type

bool

Methods

trashed()

trashed() : bool

判断当前实例是否被软删除

Returns

bool —

withTrashed()

withTrashed() : \think\db\Query

查询软删除数据

Returns

\think\db\Query —

onlyTrashed()

onlyTrashed() : \think\db\Query

只查询软删除数据

Returns

\think\db\Query —

delete()

delete(mixed  $force = false) : bool

删除当前的记录

Parameters

mixed $force

Returns

bool —

destroy()

destroy(mixed  $data, bool  $force = false) : bool

删除记录

Parameters

mixed $data

主键列表 支持闭包查询条件

bool $force

是否强制删除

Returns

bool —

restore()

restore(array  $where = []) : bool

恢复被软删除的记录

Parameters

array $where

更新条件

Returns

bool —

withTrashedData()

withTrashedData(bool  $withTrashed) : $this

是否包含软删除数据

Parameters

bool $withTrashed

是否包含软删除数据

Returns

$this —

getWithTrashedExp()

getWithTrashedExp() : array

获取软删除数据的查询条件

Returns

array —

getDeleteTimeField()

getDeleteTimeField(bool  $read = false) : string|false

获取软删除字段

Parameters

bool $read

是否查询操作 写操作的时候会自动去掉表别名

Returns

string|false —

withNoTrashed()

withNoTrashed(\think\db\Query  $query) : void

查询的时候默认排除软删除数据

Parameters

\think\db\Query $query