append() append(array $append = [], bool $override = false) : $this 设置需要附加的输出属性 Parameters array $append 属性列表 bool $override 是否覆盖 Returns $this —
appendRelationAttr() appendRelationAttr(string $attr, string|array $append) : $this 设置附加关联对象的属性 Parameters string $attr 关联属性 string|array $append 追加属性名 Throws \think\Exception Returns $this —
hidden() hidden(array $hidden = [], bool $override = false) : $this 设置需要隐藏的输出属性 Parameters array $hidden 属性列表 bool $override 是否覆盖 Returns $this —
visible() visible(array $visible = [], bool $override = false) : $this 设置需要输出的属性 Parameters array $visible bool $override 是否覆盖 Returns $this —
toJson() toJson(int $options = JSON_UNESCAPED_UNICODE) : string 转换当前模型对象为JSON字符串 Parameters int $options json参数 Returns string —
toCollection() toCollection(array|\think\Collection $collection, string $resultSetType = null) : \think\Collection 转换数据集为数据集对象 Parameters array|\think\Collection $collection 数据集 string $resultSetType 数据集类 Returns \think\Collection —