nk-lihaink-cn/app/common/model/FamilyRelations.php
2023-01-19 02:36:01 +00:00

21 lines
415 B
PHP

<?php
namespace app\common\model;
/**
* 家庭关系模型.
*/
class FamilyRelations extends BaseModel
{
// 表名
protected $name = 'szxc_family_relations';
// 开启自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = '';
// 追加属性
protected $append = [
];
}