houde_web_api/app/common/model/Test/Test.php
2023-05-05 21:31:21 +08:00

96 lines
2.0 KiB
PHP

<?php
namespace app\common\model\Test;
use app\common\arw\adjfut\src\Validate;
use app\BaseModel;
use think\model\concern\SoftDelete;
use app\common\arw\adjfut\src\Excel;
use app\Request;
use app\common\exception\Tool;
use think\facade\Db;
class Test extends BaseModel
{
use SoftDelete;
// 删除字段
protected $deleteTime = 'test_delete_time';
// 设置主键名
protected $pk = 'test_guid';
// 设置废弃字段
protected $disuse = [];
// 设置字段信息
protected $schema = [
"test_id" => "int",
"test_guid" => "string",
"test_name" => "string",
"test_show_status" => "string",
"test_score" => "",
"test_sort" => "int",
"test_create_time" => "datetime",
"test_create_user_guid" => "string",
"test_update_time" => "datetime",
"test_update_user_guid" => "string",
"test_delete_time" => "datetime",
"test_delete_user_guid" => "string",
];
// 设置json类型字段
protected $json = [''];
// 开启自动写入时间戳字段
protected $autoWriteTimestamp = 'datetime';
// 创建时间
protected $createTime = 'test_create_time';
// 修改时间
protected $updateTime = 'test_update_time';
/**
* 新增前
*/
public static function onBeforeInsert(self $model): void
{
// self::checkRepeatData($model);
$model->completeCreateField();
}
/**
* 更新前
*/
public static function onBeforeUpdate(self $model): void
{
// self::checkRepeatData($model);
$model->completeUpdateField();
}
/**
* 删除前
*/
public static function onBeforeDelete(self $model): void
{
$model->completeDeleteField();
}
}