* [bug#63337,done,0.2h] add default value.

This commit is contained in:
sunguangming
2025-06-19 01:47:19 +00:00
parent bacf3a1b5c
commit 3a28f2eb5a
+2 -2
View File
@@ -31,8 +31,8 @@ $config->todo->batchCreate->form['pri'] = array('required' => false, 'typ
$config->todo->batchCreate->form['name'] = array('required' => false, 'type' => 'string', 'base' => true);
$config->todo->batchCreate->form['desc'] = array('required' => false, 'type' => 'string');
$config->todo->batchCreate->form['assignedTo'] = array('required' => false, 'type' => 'string');
$config->todo->batchCreate->form['begin'] = array('required' => false, 'type' => 'int');
$config->todo->batchCreate->form['end'] = array('required' => false, 'type' => 'int');
$config->todo->batchCreate->form['begin'] = array('required' => false, 'type' => 'int', 'default' => 2400);
$config->todo->batchCreate->form['end'] = array('required' => false, 'type' => 'int', 'default' => 2400);
$config->todo->batchCreate->form['switchTime'] = array('required' => false, 'type' => 'string', 'default' => '');
$config->todo->batchCreate->form['vision'] = array('required' => false, 'type' => 'string', 'default' => $this->config->vision);