Files
zyt/server/app/common/model/QywxExternalContact.php
T
2026-05-11 17:49:38 +08:00

25 lines
554 B
PHP
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
declare(strict_types=1);
namespace app\common\model;
use think\model\concern\SoftDelete;
/**
* 企业微信外部联系人模型
*/
class QywxExternalContact extends BaseModel
{
use SoftDelete;
protected $name = 'qywx_external_contact';
protected $deleteTime = 'delete_time';
/**
* 未删除行在库中为 delete_time = NULL(建表与同步 upsert 均如此)。
* 若设为 0Think 会生成 delete_time = 0,与数据不一致导致列表永远为空。
*/
protected $defaultSoftDelete = null;
}