@@ -100,6 +100,7 @@ class ToDoReminder extends Command
DB::transaction(function () use ($todo, $now) {
$todo->last_remind_time = $now;
$todo->status = TodoList::status_one;
+ $todo->last_time_result = $msg ?? "成功";
$todo->save();
});
}
@@ -22,6 +22,10 @@ return [
'key' =>'status_title',
'value' => '状态',
],
+ [
+ 'key' =>'last_time_result',
+ 'value' => '上一次提醒结果',
+ ],
[
'key' =>'crt_name',
'value' => '创建人',