08_dict_att_org.sql 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. -- ============================================================
  2. -- 字典导入:机构 / 参建单位 / 分包单位 / 项目 / 人员 相关字典
  3. -- 来源:docs/项目基础信息表.docx
  4. -- 约定:dict_code / dict_id 由数据库自增生成;status='0' 正常;
  5. -- is_default='N';dict_sort 取代码值;create_by='admin'
  6. -- 字段与字典类型对照见每条 INSERT 注释
  7. -- ============================================================
  8. -- 1) 机构级别 (ATT_ORG_BASE.ORG_LEVEL / ATT_ORG_UWAT_BASE.ORG_LEVEL / 单位规格)
  9. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  10. VALUES ('机构级别', 'slaj_org_level', '0', 'admin', now(), '机构/参建单位级别');
  11. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  12. VALUES
  13. (1, '国家级正职', '01', 'slaj_org_level', 'N', '0', 'admin', now(), NULL),
  14. (2, '国家级副职', '02', 'slaj_org_level', 'N', '0', 'admin', now(), NULL),
  15. (3, '正部(省)级', '03', 'slaj_org_level', 'N', '0', 'admin', now(), NULL),
  16. (4, '副部(省)级', '04', 'slaj_org_level', 'N', '0', 'admin', now(), NULL),
  17. (5, '司、局、地、厅级', '05', 'slaj_org_level', 'N', '0', 'admin', now(), NULL),
  18. (6, '副司、副局、副地、副厅级', '06', 'slaj_org_level', 'N', '0', 'admin', now(), NULL),
  19. (7, '县、正处级', '07', 'slaj_org_level', 'N', '0', 'admin', now(), NULL),
  20. (8, '副县、副处级', '08', 'slaj_org_level', 'N', '0', 'admin', now(), NULL),
  21. (9, '科级', '09', 'slaj_org_level', 'N', '0', 'admin', now(), NULL),
  22. (10, '副科级', '10', 'slaj_org_level', 'N', '0', 'admin', now(), NULL),
  23. (11, '股级', '11', 'slaj_org_level', 'N', '0', 'admin', now(), NULL),
  24. (12, '副股级', '12', 'slaj_org_level', 'N', '0', 'admin', now(), NULL),
  25. (90, '其他级(含无级)', '90', 'slaj_org_level', 'N', '0', 'admin', now(), NULL);
  26. -- 2) 机构类型 (ATT_ORG_BASE.ORG_TYPE / ATT_ORG_UWAT_BASE.ORG_TYPE)
  27. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  28. VALUES ('机构类型', 'slaj_org_type', '0', 'admin', now(), '机构/参建单位类型');
  29. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  30. VALUES
  31. (1, '单位', '1', 'slaj_org_type', 'N', '0', 'admin', now(), NULL),
  32. (2, '部门', '2', 'slaj_org_type', 'N', '0', 'admin', now(), NULL),
  33. (9, '其他', '9', 'slaj_org_type', 'N', '0', 'admin', now(), NULL);
  34. -- 3) 机构状态 (ATT_ORG_BASE.STATUS / ATT_ORG_UWAT_BASE.STATUS)
  35. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  36. VALUES ('机构状态', 'slaj_org_status', '0', 'admin', now(), '机构/参建单位状态');
  37. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  38. VALUES
  39. (1, '启用', '1', 'slaj_org_status', 'N', '0', 'admin', now(), NULL),
  40. (2, '停用', '2', 'slaj_org_status', 'N', '0', 'admin', now(), NULL),
  41. (9, '注销', '9', 'slaj_org_status', 'N', '0', 'admin', now(), NULL);
  42. -- 4) 区域类型 (ATT_ORG_BASE.AREA_TYPE / ATT_ORG_UWAT_BASE.AREA_TYPE)
  43. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  44. VALUES ('区域类型', 'slaj_area_type', '0', 'admin', now(), '管辖范围分区类型');
  45. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  46. VALUES
  47. (1, '行政区划', '1', 'slaj_area_type', 'N', '0', 'admin', now(), NULL),
  48. (2, '水资源分区', '2', 'slaj_area_type', 'N', '0', 'admin', now(), NULL),
  49. (3, '流域分区', '3', 'slaj_area_type', 'N', '0', 'admin', now(), NULL),
  50. (4, '流域片区', '4', 'slaj_area_type', 'N', '0', 'admin', now(), NULL),
  51. (5, '单位', '5', 'slaj_area_type', 'N', '0', 'admin', now(), NULL),
  52. (9, '其他', '9', 'slaj_area_type', 'N', '0', 'admin', now(), NULL);
  53. -- 5) 单位类型(客户端) (ATT_ORG_EXT.ORG_CLIEN_TYPE / ATT_ORG_UWAT_EXT.ORG_CLIEN_TYPE)
  54. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  55. VALUES ('单位类型(客户端)', 'slaj_org_clien_type', '0', 'admin', now(), '单位类型客户端');
  56. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  57. VALUES
  58. (1, '大中型已建工程运行管理单位', '1', 'slaj_org_clien_type', 'N', '0', 'admin', now(), NULL),
  59. (2, '大中型在建工程项目法人', '2', 'slaj_org_clien_type', 'N', '0', 'admin', now(), NULL),
  60. (3, '小型工程管理单位和技术服务单位', '3', 'slaj_org_clien_type', 'N', '0', 'admin', now(), NULL);
  61. -- 6) 水利机构单位类型 (ATT_ORG_EXT.ORG_TYPE 表2.5-122)
  62. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  63. VALUES ('水利机构单位类型', 'slaj_ext_org_type', '0', 'admin', now(), '水利机构扩展单位类型');
  64. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  65. VALUES
  66. (1, '工程管理单位', '1', 'slaj_ext_org_type', 'N', '0', 'admin', now(), NULL),
  67. (2, '项目法人', '2', 'slaj_ext_org_type', 'N', '0', 'admin', now(), NULL),
  68. (3, '施工单位', '3', 'slaj_ext_org_type', 'N', '0', 'admin', now(), NULL),
  69. (4, '其他', '4', 'slaj_ext_org_type', 'N', '0', 'admin', now(), NULL);
  70. -- 7) 参建单位类型 (ATT_ORG_UWAT_EXT.ORG_TYPE 表2.5-139)
  71. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  72. VALUES ('参建单位类型', 'slaj_uwat_org_type', '0', 'admin', now(), '参建单位类型');
  73. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  74. VALUES
  75. (1, '施工单位', '1', 'slaj_uwat_org_type', 'N', '0', 'admin', now(), NULL),
  76. (2, '监理单位', '2', 'slaj_uwat_org_type', 'N', '0', 'admin', now(), NULL);
  77. -- 8) 单位性质 (ATT_ORG_EXT.WIUN_PROP / ATT_ORG_UWAT_EXT.WIUN_PROP)
  78. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  79. VALUES ('单位性质', 'slaj_wiun_prop', '0', 'admin', now(), '单位性质');
  80. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  81. VALUES
  82. (1, '国有企业', '1', 'slaj_wiun_prop', 'N', '0', 'admin', now(), NULL),
  83. (2, '国有控股企业', '2', 'slaj_wiun_prop', 'N', '0', 'admin', now(), NULL),
  84. (3, '外资企业', '3', 'slaj_wiun_prop', 'N', '0', 'admin', now(), NULL),
  85. (4, '合资企业', '4', 'slaj_wiun_prop', 'N', '0', 'admin', now(), NULL),
  86. (5, '私营企业', '5', 'slaj_wiun_prop', 'N', '0', 'admin', now(), NULL),
  87. (6, '事业单位', '6', 'slaj_wiun_prop', 'N', '0', 'admin', now(), NULL),
  88. (7, '国家行政机关', '7', 'slaj_wiun_prop', 'N', '0', 'admin', now(), NULL),
  89. (8, '政府', '8', 'slaj_wiun_prop', 'N', '0', 'admin', now(), NULL);
  90. -- 9) 是否水利系统 (ATT_ORG_EXT.IF_WATE_ENTE / ATT_ORG_UWAT_EXT.IF_WATE_ENTE)
  91. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  92. VALUES ('是否水利系统', 'slaj_if_wate_ente', '0', 'admin', now(), '是否水利系统');
  93. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  94. VALUES
  95. (0, '未知', '0', 'slaj_if_wate_ente', 'N', '0', 'admin', now(), NULL),
  96. (1, '是', '1', 'slaj_if_wate_ente', 'N', '0', 'admin', now(), NULL),
  97. (2, '否', '2', 'slaj_if_wate_ente', 'N', '0', 'admin', now(), NULL);
  98. -- 10) 是否项目法人单位 (ATT_ORG_EXT.IS_LEG_ENTI / ATT_ORG_UWAT_EXT.IS_LEG_ENTI)
  99. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  100. VALUES ('是否项目法人单位', 'slaj_is_leg_enti', '0', 'admin', now(), '是否项目法人单位');
  101. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  102. VALUES
  103. (0, '未知', '0', 'slaj_is_leg_enti', 'N', '0', 'admin', now(), NULL),
  104. (1, '是', '1', 'slaj_is_leg_enti', 'N', '0', 'admin', now(), NULL),
  105. (2, '否', '2', 'slaj_is_leg_enti', 'N', '0', 'admin', now(), NULL);
  106. -- 11) 是否部直属单位 (ATT_ORG_EXT.IF_MINI_DIRE / ATT_ORG_UWAT_EXT.IF_MINI_DIRE)
  107. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  108. VALUES ('是否部直属单位', 'slaj_if_mini_dire', '0', 'admin', now(), '是否部直属单位');
  109. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  110. VALUES
  111. (0, '未知', '0', 'slaj_if_mini_dire', 'N', '0', 'admin', now(), NULL),
  112. (1, '是', '1', 'slaj_if_mini_dire', 'N', '0', 'admin', now(), NULL),
  113. (2, '否', '2', 'slaj_if_mini_dire', 'N', '0', 'admin', now(), NULL);
  114. -- 12) 施工总承包资质 (ATT_ORG_EXT.CONTR_QUAL_GRAD / ATT_ORG_UWAT_EXT.CONTR_QUAL_GRAD / ATT_ORG_WSUB.CONTR_QUAL_GRAD)
  115. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  116. VALUES ('施工总承包资质', 'slaj_contr_qual_grad', '0', 'admin', now(), '施工总承包资质');
  117. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  118. VALUES
  119. (1, '一级', '1', 'slaj_contr_qual_grad', 'N', '0', 'admin', now(), NULL),
  120. (2, '二级', '2', 'slaj_contr_qual_grad', 'N', '0', 'admin', now(), NULL),
  121. (3, '三级', '3', 'slaj_contr_qual_grad', 'N', '0', 'admin', now(), NULL);
  122. -- 13) 监理资质等级 (ATT_ORG_EXT.SUP_QUAL_GRAD / ATT_ORG_UWAT_EXT.SUP_QUAL_GRAD)
  123. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  124. VALUES ('监理资质等级', 'slaj_sup_qual_grad', '0', 'admin', now(), '监理资质等级');
  125. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  126. VALUES
  127. (1, '甲级', '1', 'slaj_sup_qual_grad', 'N', '0', 'admin', now(), NULL),
  128. (2, '乙级', '2', 'slaj_sup_qual_grad', 'N', '0', 'admin', now(), NULL),
  129. (3, '丙级', '3', 'slaj_sup_qual_grad', 'N', '0', 'admin', now(), NULL);
  130. -- 14) 标准化等级 (ATT_ORG_EXT.STAN_GRAD / ATT_ORG_UWAT_EXT.STAN_GRAD)
  131. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  132. VALUES ('标准化等级', 'slaj_stan_grad', '0', 'admin', now(), '标准化等级');
  133. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  134. VALUES
  135. (1, '一级', '1', 'slaj_stan_grad', 'N', '0', 'admin', now(), NULL),
  136. (2, '二级', '2', 'slaj_stan_grad', 'N', '0', 'admin', now(), NULL),
  137. (3, '三级', '3', 'slaj_stan_grad', 'N', '0', 'admin', now(), NULL),
  138. (4, '无', '4', 'slaj_stan_grad', 'N', '0', 'admin', now(), NULL);
  139. -- 15) 经费来源 (ATT_ORG_EXT.FUND_SOUR / ATT_ORG_UWAT_EXT.FUND_SOUR)
  140. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  141. VALUES ('经费来源', 'slaj_fund_sour', '0', 'admin', now(), '经费来源');
  142. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  143. VALUES
  144. (1, '财政全额', '1', 'slaj_fund_sour', 'N', '0', 'admin', now(), NULL),
  145. (2, '财政差额', '2', 'slaj_fund_sour', 'N', '0', 'admin', now(), NULL),
  146. (3, '自筹自支', '3', 'slaj_fund_sour', 'N', '0', 'admin', now(), NULL),
  147. (4, '其他', '4', 'slaj_fund_sour', 'N', '0', 'admin', now(), NULL);
  148. -- 16) 项目部类型 (ATT_ORG_UWAT_EXT.PROJ_GROUP_TYPE 表2.5-149)
  149. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  150. VALUES ('项目部类型', 'slaj_proj_group_type', '0', 'admin', now(), '项目部类型');
  151. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  152. VALUES
  153. (1, '施工单位', '1', 'slaj_proj_group_type', 'N', '0', 'admin', now(), NULL),
  154. (2, '监理单位', '2', 'slaj_proj_group_type', 'N', '0', 'admin', now(), NULL);
  155. -- 17) 人员类型 (ATT_PERS_BASE.PERS_TYPE)
  156. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  157. VALUES ('人员类型', 'slaj_pers_type', '0', 'admin', now(), '人员类型');
  158. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  159. VALUES
  160. (1, '行政', '01', 'slaj_pers_type', 'N', '0', 'admin', now(), NULL),
  161. (2, '事业', '02', 'slaj_pers_type', 'N', '0', 'admin', now(), NULL),
  162. (3, '参公', '03', 'slaj_pers_type', 'N', '0', 'admin', now(), NULL),
  163. (4, '外聘', '04', 'slaj_pers_type', 'N', '0', 'admin', now(), NULL),
  164. (5, '其他', '05', 'slaj_pers_type', 'N', '0', 'admin', now(), NULL);
  165. -- 18) 性别 (ATT_PERS_BASE.SEX)
  166. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  167. VALUES ('性别', 'slaj_sex', '0', 'admin', now(), '性别');
  168. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  169. VALUES
  170. (0, '未知的性别', '0', 'slaj_sex', 'N', '0', 'admin', now(), NULL),
  171. (1, '男', '1', 'slaj_sex', 'N', '0', 'admin', now(), NULL),
  172. (2, '女', '2', 'slaj_sex', 'N', '0', 'admin', now(), NULL),
  173. (9, '未说明', '9', 'slaj_sex', 'N', '0', 'admin', now(), NULL);
  174. -- 19) 民族 (ATT_PERS_BASE.NATION)
  175. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  176. VALUES ('民族', 'slaj_nation', '0', 'admin', now(), '民族');
  177. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  178. VALUES
  179. (1, '汉族', '01', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  180. (2, '蒙古族', '02', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  181. (3, '回族', '03', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  182. (4, '藏族', '04', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  183. (5, '维吾尔族', '05', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  184. (6, '苗族', '06', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  185. (7, '彝族', '07', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  186. (8, '壮族', '08', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  187. (9, '布依族', '09', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  188. (10, '朝鲜族', '10', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  189. (11, '满族', '11', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  190. (12, '侗族', '12', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  191. (13, '瑶族', '13', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  192. (14, '白族', '14', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  193. (15, '土家族', '15', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  194. (16, '哈尼族', '16', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  195. (17, '哈萨克族', '17', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  196. (18, '傣族', '18', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  197. (19, '黎族', '19', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  198. (20, '傈僳族', '20', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  199. (21, '佤族', '21', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  200. (22, '畲族', '22', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  201. (23, '高山族', '23', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  202. (24, '拉祜族', '24', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  203. (25, '水族', '25', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  204. (26, '东乡族', '26', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  205. (27, '纳西族', '27', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  206. (28, '景颇族', '28', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  207. (29, '柯尔克孜族', '29', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  208. (30, '土族', '30', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  209. (31, '达斡尔族', '31', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  210. (32, '仫佬族', '32', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  211. (33, '羌族', '33', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  212. (34, '布朗族', '34', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  213. (35, '撒拉族', '35', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  214. (36, '毛南族', '36', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  215. (37, '仡佬族', '37', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  216. (38, '锡伯族', '38', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  217. (39, '阿昌族', '39', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  218. (40, '普米族', '40', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  219. (41, '塔吉克族', '41', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  220. (42, '怒族', '42', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  221. (43, '乌孜别克族', '43', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  222. (44, '俄罗斯族', '44', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  223. (45, '鄂温克族', '45', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  224. (46, '德昂族', '46', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  225. (47, '保安族', '47', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  226. (48, '裕固族', '48', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  227. (49, '京族', '49', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  228. (50, '塔塔尔族', '50', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  229. (51, '独龙族', '51', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  230. (52, '鄂伦春族', '52', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  231. (53, '赫哲族', '53', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  232. (54, '门巴族', '54', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  233. (55, '珞巴族', '55', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  234. (56, '基诺族', '56', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  235. (97, '其他', '97', 'slaj_nation', 'N', '0', 'admin', now(), NULL),
  236. (98, '外国血统中国籍人士', '98', 'slaj_nation', 'N', '0', 'admin', now(), NULL);
  237. -- 20) 职务级别 (ATT_PERS_BASE.ADM_DUTY) 仅取叶子节点
  238. INSERT INTO sys_dict_type (dict_name, dict_type, status, create_by, create_time, remark)
  239. VALUES ('职务级别', 'slaj_adm_duty', '0', 'admin', now(), '职务级别(叶子节点)');
  240. INSERT INTO sys_dict_data (dict_sort, dict_label, dict_value, dict_type, is_default, status, create_by, create_time, remark)
  241. VALUES
  242. (101, '国家级正职', '101', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  243. (102, '国家级副职', '102', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  244. (111, '省部级正职', '111', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  245. (112, '省部级副职', '112', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  246. (121, '厅局级正职', '121', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  247. (122, '厅局级副职', '122', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  248. (131, '县处级正职', '131', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  249. (132, '县处级副职', '132', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  250. (141, '乡科级正职', '141', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  251. (142, '乡科级副职', '142', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  252. (150, '科员级', '150', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  253. (160, '办事员级', '160', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  254. (199, '未定职公务员', '199', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  255. (211, '一级职员', '211', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  256. (212, '二级职员', '212', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  257. (221, '三级职员', '221', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  258. (222, '四级职员', '222', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  259. (231, '五级职员', '231', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  260. (232, '六级职员', '232', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  261. (241, '七级职员', '241', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  262. (242, '八级职员', '242', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  263. (250, '九级职员', '250', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  264. (260, '十级职员', '260', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  265. (299, '未定级职员', '299', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  266. (410, '高级', '410', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  267. (411, '正高级', '411', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  268. (412, '副高级', '412', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  269. (420, '中级', '420', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  270. (430, '初级', '430', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  271. (434, '助理级', '434', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  272. (435, '员级', '435', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL),
  273. (499, '未定职级专业技术人员', '499', 'slaj_adm_duty', 'N', '0', 'admin', now(), NULL);