20 lines
341 B
PHP
20 lines
341 B
PHP
<?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';
|
|
protected $defaultSoftDelete = 0;
|
|
}
|