"int", "company_profile_guid" => "string", "company_profile_img" => "string", "company_profile_content" => "string", "company_profile_color" => "string", "company_profile_order" => "int", "company_profile_create_time" => "datetime", "company_profile_create_user_guid" => "string", "company_profile_update_time" => "datetime", "company_profile_update_user_guid" => "string", "company_profile_delete_time" => "datetime", "company_profile_delete_user_guid" => "string", ]; // 设置json类型字段 protected $json = ['']; // 开启自动写入时间戳字段 protected $autoWriteTimestamp = 'datetime'; // 创建时间 protected $createTime = 'company_profile_create_time'; // 修改时间 protected $updateTime = 'company_profile_update_time'; //排序字段 public $order_field = 'company_profile_order'; /** * 新增前 */ public static function onBeforeInsert(self $model): void { Tool::sortInsertProc(self::class, $model->company_profile_order); $model->completeCreateField(); } /** * 更新前 */ public static function onBeforeUpdate(self $model): void { Tool::sortEditProc(self::class, $model->company_profile_guid, $model->company_profile_order); $model->completeUpdateField(); } /** * 删除前 */ public static function onBeforeDelete(self $model): void { Tool::sortDeleteProc(self::class, $model->company_profile_guid); $model->completeDeleteField(); } }