wlzboy
4 天以前 cfe0b79fbea0fb1d7a5a796e71ada7d3b7812046
1
2
3
4
5
6
7
8
9
10
-- 更新附加费用类型字典数据
-- 删除旧的字典数据
DELETE FROM sys_dict_data WHERE dict_type = 'task_additional_fee_type';
 
-- 插入新的字典数据
INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, remark) VALUES
(1, '等待费', '1', 'task_additional_fee_type', '', 'default', 'N', '0', 'admin', NOW(), '等待费'),
(2, '担架', '2', 'task_additional_fee_type', '', 'default', 'N', '0', 'admin', NOW(), '担架'),
(3, '居家ICU', '3', 'task_additional_fee_type', '', 'default', 'N', '0', 'admin', NOW(), '居家ICU'),
(4, '医疗设备', '4', 'task_additional_fee_type', '', 'default', 'N', '0', 'admin', NOW(), '医疗设备');