dict-2023.sql 2.6 KB

123456789101112131415161718192021222324252627282930313233
  1. INSERT INTO `sys_dict_type`(`dict_name`, `dict_type`, `status`, `create_by`, `create_time`)
  2. VALUES ('电力异常严重性', 'dlycyzx', '0', 'admin', now());
  3. INSERT INTO `sys_dict_data`(`dict_sort`, `dict_label`, `dict_value`, `dict_type`, `is_default`, `status`, `create_by`, `create_time`)
  4. VALUES (1, '一级', '1', 'dlycyzx', 'N', '0', 'admin', now());
  5. INSERT INTO `sys_dict_data`(`dict_sort`, `dict_label`, `dict_value`, `dict_type`, `is_default`, `status`, `create_by`, `create_time`)
  6. VALUES (2, '二级', '2', 'dlycyzx', 'N', '0', 'admin', now());
  7. INSERT INTO `sys_dict_data`(`dict_sort`, `dict_label`, `dict_value`, `dict_type`, `is_default`, `status`, `create_by`, `create_time`)
  8. VALUES (3, '三级', '3', 'dlycyzx', 'N', '0', 'admin', now());
  9. INSERT INTO `sys_dict_type`(`dict_name`, `dict_type`, `status`, `create_by`, `create_time`)
  10. VALUES ('电力异常所属工区', 'dlyc_sygq', '0', 'admin', now());
  11. INSERT INTO `sys_dict_data`(`dict_sort`, `dict_label`, `dict_value`, `dict_type`, `is_default`, `status`, `create_by`, `create_time`)
  12. VALUES (1, '长白山运行工区', '1', 'dlyc_sygq', 'N', '0', 'admin', now());
  13. INSERT INTO `sys_dict_data`(`dict_sort`, `dict_label`, `dict_value`, `dict_type`, `is_default`, `status`, `create_by`, `create_time`)
  14. VALUES (2, '长春运行工区', '2', 'dlyc_sygq', 'N', '0', 'admin', now());
  15. INSERT INTO `sys_dict_data`(`dict_sort`, `dict_label`, `dict_value`, `dict_type`, `is_default`, `status`, `create_by`, `create_time`)
  16. VALUES (3, '电力维修队', '3', 'dlyc_sygq', 'N', '0', 'admin', now());
  17. INSERT INTO `sys_dict_data`(`dict_sort`, `dict_label`, `dict_value`, `dict_type`, `is_default`, `status`, `create_by`, `create_time`)
  18. VALUES (4, '延吉西运行工区', '4', 'dlyc_sygq', 'N', '0', 'admin', now());
  19. INSERT INTO `sys_dict_data`(`dict_sort`, `dict_label`, `dict_value`, `dict_type`, `is_default`, `status`, `create_by`, `create_time`)
  20. VALUES (5, '吉林运行工区', '5', 'dlyc_sygq', 'N', '0', 'admin', now());
  21. INSERT INTO `sys_dict_data`(`dict_sort`, `dict_label`, `dict_value`, `dict_type`, `is_default`, `status`, `create_by`, `create_time`)
  22. VALUES (6, '铁岭西运行工区', '6', 'dlyc_sygq', 'N', '0', 'admin', now());
  23. INSERT INTO `sys_dict_data`(`dict_sort`, `dict_label`, `dict_value`, `dict_type`, `is_default`, `status`, `create_by`, `create_time`)
  24. VALUES (7, '四平东运行工区', '7', 'dlyc_sygq', 'N', '0', 'admin', now());
  25. INSERT INTO `sys_dict_data`(`dict_sort`, `dict_label`, `dict_value`, `dict_type`, `is_default`, `status`, `create_by`, `create_time`)
  26. VALUES (8, '德惠西运行工区', '8', 'dlyc_sygq', 'N', '0', 'admin', now());