| | |
| | | -- ---------------------------- |
| | | INSERT INTO sys_dict_type(dict_name, dict_type, status, create_by, create_time, update_by, update_time, remark) |
| | | VALUES('任务类型', 'sys_task_type', '0', 'admin', SYSDATE(), '', NULL, '任务类型列表'); |
| | | INSERT INTO sys_dict_data(dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) |
| | | VALUES(1, '转运任务', 'EMERGENCY_TRANSFER', 'sys_task_type', '', 'primary', 'N', '0', 'admin', SYSDATE(), '', NULL, '维修保养任务'); |
| | | |
| | | INSERT INTO sys_dict_data(dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) |
| | | VALUES(1, '维修保养', 'MAINTENANCE', 'sys_task_type', '', 'primary', 'N', '0', 'admin', SYSDATE(), '', NULL, '维修保养任务'); |
| | | VALUES(2, '维修保养', 'MAINTENANCE', 'sys_task_type', '', 'primary', 'N', '0', 'admin', SYSDATE(), '', NULL, '维修保养任务'); |
| | | |
| | | INSERT INTO sys_dict_data(dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) |
| | | VALUES(2, '加油任务', 'FUEL', 'sys_task_type', '', 'success', 'N', '0', 'admin', SYSDATE(), '', NULL, '加油任务'); |
| | | VALUES(3, '加油任务', 'FUEL', 'sys_task_type', '', 'success', 'N', '0', 'admin', SYSDATE(), '', NULL, '加油任务'); |
| | | |
| | | INSERT INTO sys_dict_data(dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, update_by, update_time, remark) |
| | | VALUES(3, '其他', 'OTHER', 'sys_task_type', '', 'info', 'N', '0', 'admin', SYSDATE(), '', NULL, '其他类型任务'); |
| | | VALUES(4, '其他', 'OTHER', 'sys_task_type', '', 'info', 'N', '0', 'admin', SYSDATE(), '', NULL, '其他类型任务'); |
| | | |
| | | -- 2. 任务状态字典 |
| | | -- ---------------------------- |