Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

1486 строки
107 KiB

  1. CREATE TABLE `wx_energy_meter` (
  2. `id` bigint(20) NOT NULL COMMENT '主键ID',
  3. `tenant_id` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '租户ID',
  4. `parent_tenant_id` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '父租户ID',
  5. `create_time` timestamp NULL DEFAULT NULL,
  6. `update_time` timestamp NULL DEFAULT NULL,
  7. `is_del` int(1) NOT NULL DEFAULT '0',
  8. `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '表名称',
  9. `type` int(3) NOT NULL COMMENT '表类型',
  10. `rate` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '倍率',
  11. `is_public` int(1) NOT NULL DEFAULT '0' COMMENT '用户表0 , 总表1',
  12. `building_id` bigint(20) DEFAULT NULL,
  13. `floor_id` bigint(20) DEFAULT NULL,
  14. `shop_id` bigint(20) DEFAULT NULL,
  15. PRIMARY KEY (`id`),
  16. UNIQUE KEY `id_UNIQUE` (`id`)
  17. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC COMMENT='能耗表';
  18. CREATE TABLE `wx_energy_meter_reading` (
  19. `id` bigint(20) NOT NULL COMMENT '主键ID',
  20. `tenant_id` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '租户ID',
  21. `parent_tenant_id` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '父租户ID',
  22. `create_time` timestamp NULL DEFAULT NULL,
  23. `update_time` timestamp NULL DEFAULT NULL,
  24. `cur_number` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '本次读数',
  25. `pre_number` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '上次度数',
  26. `pre_time` timestamp NULL DEFAULT NULL COMMENT '上次读数时间',
  27. `start_time` timestamp NULL DEFAULT NULL COMMENT '所属周期开始',
  28. `end_time` timestamp NULL DEFAULT NULL COMMENT '所属周期结束',
  29. `create_by` bigint(20) DEFAULT NULL,
  30. `create_by_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  31. `update_by` bigint(20) DEFAULT NULL,
  32. `update_by_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  33. `remark` varchar(300) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  34. `time_id` bigint(20) NOT NULL COMMENT '区间ID',
  35. `meter_id` bigint(20) NOT NULL COMMENT '表ID',
  36. `meter_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '表名称',
  37. `is_public` int(3) NOT NULL COMMENT '是否总表',
  38. `shop_id` bigint(20) DEFAULT NULL COMMENT '店铺ID',
  39. `shop_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '店铺编号',
  40. `building_id` bigint(20) NOT NULL COMMENT '楼座ID',
  41. `floor_id` bigint(20) NOT NULL COMMENT '楼层ID',
  42. `price` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '单价',
  43. `meter_type` int(3) NOT NULL COMMENT '表类型',
  44. `meter_rate` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '表倍率',
  45. `pre_by` bigint(20) DEFAULT NULL COMMENT '上次抄表人',
  46. `pre_by_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '上次抄表人',
  47. PRIMARY KEY (`id`),
  48. UNIQUE KEY `id_UNIQUE` (`id`),
  49. KEY `T_T_F` (`tenant_id`,`time_id`,`meter_id`)
  50. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC COMMENT='能耗表抄表';
  51. CREATE TABLE `wx_energy_fees_time` (
  52. `id` bigint(20) NOT NULL COMMENT '主键ID',
  53. `tenant_id` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '租户ID',
  54. `parent_tenant_id` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '父租户ID',
  55. `create_time` timestamp NULL DEFAULT NULL,
  56. `update_time` timestamp NULL DEFAULT NULL,
  57. `is_del` int(1) NOT NULL DEFAULT '0',
  58. `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '表名称',
  59. `type` int(3) NOT NULL COMMENT '表类型',
  60. `start_time` timestamp NULL DEFAULT NULL,
  61. `end_time` timestamp NULL DEFAULT NULL,
  62. PRIMARY KEY (`id`),
  63. UNIQUE KEY `id_UNIQUE` (`id`)
  64. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC COMMENT='能耗表';
  65. CREATE TABLE `wx_energy_fees` (
  66. `id` bigint(20) NOT NULL COMMENT '主键ID',
  67. `tenant_id` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '租户ID',
  68. `parent_tenant_id` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '父租户ID',
  69. `create_time` timestamp NULL DEFAULT NULL,
  70. `update_time` timestamp NULL DEFAULT NULL,
  71. `is_del` int(1) NOT NULL DEFAULT '0',
  72. `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '名称',
  73. `price` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '单价',
  74. `public_calcute` int(1) NOT NULL COMMENT '公摊计费规则',
  75. `type` int(1) NOT NULL COMMENT '表类型',
  76. PRIMARY KEY (`id`),
  77. UNIQUE KEY `id_UNIQUE` (`id`)
  78. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC COMMENT='能耗表';
  79. CREATE TABLE `wx_energy_reading_calcute` (
  80. `id` bigint(20) NOT NULL COMMENT '主键ID',
  81. `tenant_id` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '租户ID',
  82. `parent_tenant_id` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '父租户ID',
  83. `create_time` timestamp NULL DEFAULT NULL,
  84. `update_time` timestamp NULL DEFAULT NULL,
  85. `create_by` bigint(20) DEFAULT NULL,
  86. `create_by_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  87. `update_by` bigint(20) DEFAULT NULL,
  88. `update_by_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  89. `remark` varchar(300) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  90. `time_id` bigint(20) NOT NULL COMMENT '区间ID',
  91. `fees_id` bigint(20) NOT NULL COMMENT '科目ID',
  92. `is_calcuted` int(1) NOT NULL DEFAULT '0' COMMENT '是否已计算过',
  93. `is_imported` int(1) NOT NULL DEFAULT '0' COMMENT '是否导入过',
  94. `import_success` int(1) DEFAULT '0' COMMENT '导入是否成功',
  95. `calcute_success` int(1) DEFAULT '0' COMMENT '计算是否成功',
  96. PRIMARY KEY (`id`),
  97. UNIQUE KEY `id_UNIQUE` (`id`),
  98. UNIQUE KEY `T_T_F` (`tenant_id`,`time_id`,`fees_id`)
  99. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC COMMENT='能耗表抄表';
  100. ALTER TABLE wx_bill_daily_0 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  101. ALTER TABLE wx_bill_daily_1 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  102. ALTER TABLE wx_bill_daily_2 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  103. ALTER TABLE wx_bill_daily_3 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  104. ALTER TABLE wx_bill_daily_4 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  105. ALTER TABLE wx_bill_daily_5 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  106. ALTER TABLE wx_bill_daily_6 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  107. ALTER TABLE wx_bill_daily_7 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  108. ALTER TABLE wx_bill_daily_8 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  109. ALTER TABLE wx_bill_daily_9 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  110. ALTER TABLE wx_bill_daily_10 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  111. ALTER TABLE wx_bill_daily_11 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  112. ALTER TABLE wx_bill_daily_12 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  113. ALTER TABLE wx_bill_daily_13 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  114. ALTER TABLE wx_bill_daily_14 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  115. ALTER TABLE wx_bill_daily_15 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  116. ALTER TABLE wx_bill_daily_16 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  117. ALTER TABLE wx_bill_daily_17 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  118. ALTER TABLE wx_bill_daily_18 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  119. ALTER TABLE wx_bill_daily_19 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  120. ALTER TABLE wx_bill_daily_20 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  121. ALTER TABLE wx_bill_daily_21 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  122. ALTER TABLE wx_bill_daily_22 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  123. ALTER TABLE wx_bill_daily_23 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  124. ALTER TABLE wx_bill_daily_24 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  125. ALTER TABLE wx_bill_daily_25 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  126. ALTER TABLE wx_bill_daily_26 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  127. ALTER TABLE wx_bill_daily_27 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  128. ALTER TABLE wx_bill_daily_28 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  129. ALTER TABLE wx_bill_daily_29 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  130. ALTER TABLE wx_bill_daily_30 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  131. ALTER TABLE wx_bill_daily_31 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  132. ALTER TABLE wx_bill_daily_32 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  133. ALTER TABLE wx_bill_daily_33 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  134. ALTER TABLE wx_bill_daily_34 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  135. ALTER TABLE wx_bill_daily_35 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  136. ALTER TABLE wx_bill_daily_36 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  137. ALTER TABLE wx_bill_daily_37 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  138. ALTER TABLE wx_bill_daily_38 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  139. ALTER TABLE wx_bill_daily_39 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  140. ALTER TABLE wx_bill_daily_40 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  141. ALTER TABLE wx_bill_daily_41 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  142. ALTER TABLE wx_bill_daily_42 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  143. ALTER TABLE wx_bill_daily_43 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  144. ALTER TABLE wx_bill_daily_44 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  145. ALTER TABLE wx_bill_daily_45 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  146. ALTER TABLE wx_bill_daily_46 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  147. ALTER TABLE wx_bill_daily_47 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  148. ALTER TABLE wx_bill_daily_48 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  149. ALTER TABLE wx_bill_daily_49 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  150. ALTER TABLE wx_bill_daily_50 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  151. ALTER TABLE wx_bill_daily_51 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  152. ALTER TABLE wx_bill_daily_52 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  153. ALTER TABLE wx_bill_daily_53 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  154. ALTER TABLE wx_bill_daily_54 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  155. ALTER TABLE wx_bill_daily_55 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  156. ALTER TABLE wx_bill_daily_56 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  157. ALTER TABLE wx_bill_daily_57 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  158. ALTER TABLE wx_bill_daily_58 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  159. ALTER TABLE wx_bill_daily_59 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  160. ALTER TABLE wx_bill_daily_60 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  161. ALTER TABLE wx_bill_daily_61 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  162. ALTER TABLE wx_bill_daily_62 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  163. ALTER TABLE wx_bill_daily_63 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  164. ALTER TABLE wx_bill_daily_64 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  165. ALTER TABLE wx_bill_daily_65 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  166. ALTER TABLE wx_bill_daily_66 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  167. ALTER TABLE wx_bill_daily_67 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  168. ALTER TABLE wx_bill_daily_68 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  169. ALTER TABLE wx_bill_daily_69 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  170. ALTER TABLE wx_bill_daily_70 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  171. ALTER TABLE wx_bill_daily_71 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  172. ALTER TABLE wx_bill_daily_72 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  173. ALTER TABLE wx_bill_daily_73 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  174. ALTER TABLE wx_bill_daily_74 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  175. ALTER TABLE wx_bill_daily_75 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  176. ALTER TABLE wx_bill_daily_76 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  177. ALTER TABLE wx_bill_daily_77 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  178. ALTER TABLE wx_bill_daily_78 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  179. ALTER TABLE wx_bill_daily_79 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  180. ALTER TABLE wx_bill_daily_80 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  181. ALTER TABLE wx_bill_daily_81 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  182. ALTER TABLE wx_bill_daily_82 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  183. ALTER TABLE wx_bill_daily_83 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  184. ALTER TABLE wx_bill_daily_84 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  185. ALTER TABLE wx_bill_daily_85 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  186. ALTER TABLE wx_bill_daily_86 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  187. ALTER TABLE wx_bill_daily_87 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  188. ALTER TABLE wx_bill_daily_88 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  189. ALTER TABLE wx_bill_daily_89 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  190. ALTER TABLE wx_bill_daily_90 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  191. ALTER TABLE wx_bill_daily_91 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  192. ALTER TABLE wx_bill_daily_92 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  193. ALTER TABLE wx_bill_daily_93 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  194. ALTER TABLE wx_bill_daily_94 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  195. ALTER TABLE wx_bill_daily_95 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  196. ALTER TABLE wx_bill_daily_96 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  197. ALTER TABLE wx_bill_daily_97 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  198. ALTER TABLE wx_bill_daily_98 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  199. ALTER TABLE wx_bill_daily_99 ADD COLUMN energy_reading_calcuteId BIGINT(20) COMMENT '能源抄表计算ID' ;
  200. ALTER TABLE wx_bill_daily_0 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  201. ALTER TABLE wx_bill_daily_1 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  202. ALTER TABLE wx_bill_daily_2 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  203. ALTER TABLE wx_bill_daily_3 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  204. ALTER TABLE wx_bill_daily_4 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  205. ALTER TABLE wx_bill_daily_5 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  206. ALTER TABLE wx_bill_daily_6 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  207. ALTER TABLE wx_bill_daily_7 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  208. ALTER TABLE wx_bill_daily_8 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  209. ALTER TABLE wx_bill_daily_9 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  210. ALTER TABLE wx_bill_daily_10 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  211. ALTER TABLE wx_bill_daily_11 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  212. ALTER TABLE wx_bill_daily_12 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  213. ALTER TABLE wx_bill_daily_13 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  214. ALTER TABLE wx_bill_daily_14 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  215. ALTER TABLE wx_bill_daily_15 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  216. ALTER TABLE wx_bill_daily_16 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  217. ALTER TABLE wx_bill_daily_17 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  218. ALTER TABLE wx_bill_daily_18 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  219. ALTER TABLE wx_bill_daily_19 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  220. ALTER TABLE wx_bill_daily_20 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  221. ALTER TABLE wx_bill_daily_21 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  222. ALTER TABLE wx_bill_daily_22 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  223. ALTER TABLE wx_bill_daily_23 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  224. ALTER TABLE wx_bill_daily_24 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  225. ALTER TABLE wx_bill_daily_25 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  226. ALTER TABLE wx_bill_daily_26 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  227. ALTER TABLE wx_bill_daily_27 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  228. ALTER TABLE wx_bill_daily_28 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  229. ALTER TABLE wx_bill_daily_29 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  230. ALTER TABLE wx_bill_daily_30 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  231. ALTER TABLE wx_bill_daily_31 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  232. ALTER TABLE wx_bill_daily_32 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  233. ALTER TABLE wx_bill_daily_33 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  234. ALTER TABLE wx_bill_daily_34 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  235. ALTER TABLE wx_bill_daily_35 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  236. ALTER TABLE wx_bill_daily_36 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  237. ALTER TABLE wx_bill_daily_37 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  238. ALTER TABLE wx_bill_daily_38 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  239. ALTER TABLE wx_bill_daily_39 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  240. ALTER TABLE wx_bill_daily_40 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  241. ALTER TABLE wx_bill_daily_41 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  242. ALTER TABLE wx_bill_daily_42 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  243. ALTER TABLE wx_bill_daily_43 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  244. ALTER TABLE wx_bill_daily_44 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  245. ALTER TABLE wx_bill_daily_45 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  246. ALTER TABLE wx_bill_daily_46 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  247. ALTER TABLE wx_bill_daily_47 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  248. ALTER TABLE wx_bill_daily_48 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  249. ALTER TABLE wx_bill_daily_49 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  250. ALTER TABLE wx_bill_daily_50 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  251. ALTER TABLE wx_bill_daily_51 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  252. ALTER TABLE wx_bill_daily_52 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  253. ALTER TABLE wx_bill_daily_53 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  254. ALTER TABLE wx_bill_daily_54 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  255. ALTER TABLE wx_bill_daily_55 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  256. ALTER TABLE wx_bill_daily_56 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  257. ALTER TABLE wx_bill_daily_57 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  258. ALTER TABLE wx_bill_daily_58 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  259. ALTER TABLE wx_bill_daily_59 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  260. ALTER TABLE wx_bill_daily_60 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  261. ALTER TABLE wx_bill_daily_61 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  262. ALTER TABLE wx_bill_daily_62 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  263. ALTER TABLE wx_bill_daily_63 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  264. ALTER TABLE wx_bill_daily_64 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  265. ALTER TABLE wx_bill_daily_65 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  266. ALTER TABLE wx_bill_daily_66 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  267. ALTER TABLE wx_bill_daily_67 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  268. ALTER TABLE wx_bill_daily_68 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  269. ALTER TABLE wx_bill_daily_69 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  270. ALTER TABLE wx_bill_daily_70 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  271. ALTER TABLE wx_bill_daily_71 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  272. ALTER TABLE wx_bill_daily_72 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  273. ALTER TABLE wx_bill_daily_73 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  274. ALTER TABLE wx_bill_daily_74 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  275. ALTER TABLE wx_bill_daily_75 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  276. ALTER TABLE wx_bill_daily_76 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  277. ALTER TABLE wx_bill_daily_77 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  278. ALTER TABLE wx_bill_daily_78 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  279. ALTER TABLE wx_bill_daily_79 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  280. ALTER TABLE wx_bill_daily_80 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  281. ALTER TABLE wx_bill_daily_81 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  282. ALTER TABLE wx_bill_daily_82 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  283. ALTER TABLE wx_bill_daily_83 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  284. ALTER TABLE wx_bill_daily_84 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  285. ALTER TABLE wx_bill_daily_85 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  286. ALTER TABLE wx_bill_daily_86 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  287. ALTER TABLE wx_bill_daily_87 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  288. ALTER TABLE wx_bill_daily_88 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  289. ALTER TABLE wx_bill_daily_89 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  290. ALTER TABLE wx_bill_daily_90 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  291. ALTER TABLE wx_bill_daily_91 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  292. ALTER TABLE wx_bill_daily_92 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  293. ALTER TABLE wx_bill_daily_93 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  294. ALTER TABLE wx_bill_daily_94 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  295. ALTER TABLE wx_bill_daily_95 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  296. ALTER TABLE wx_bill_daily_96 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  297. ALTER TABLE wx_bill_daily_97 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  298. ALTER TABLE wx_bill_daily_98 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  299. ALTER TABLE wx_bill_daily_99 ADD COLUMN energy_reading_id BIGINT(20) COMMENT '能源抄表ID' ;
  300. create table wx_energy_meter_reading_0 like wx_energy_meter_reading;
  301. create table wx_energy_meter_reading_1 like wx_energy_meter_reading;
  302. create table wx_energy_meter_reading_2 like wx_energy_meter_reading;
  303. create table wx_energy_meter_reading_3 like wx_energy_meter_reading;
  304. create table wx_energy_meter_reading_4 like wx_energy_meter_reading;
  305. create table wx_energy_meter_reading_5 like wx_energy_meter_reading;
  306. create table wx_energy_meter_reading_6 like wx_energy_meter_reading;
  307. create table wx_energy_meter_reading_7 like wx_energy_meter_reading;
  308. create table wx_energy_meter_reading_8 like wx_energy_meter_reading;
  309. create table wx_energy_meter_reading_9 like wx_energy_meter_reading;
  310. create table wx_energy_meter_reading_10 like wx_energy_meter_reading;
  311. create table wx_energy_meter_reading_11 like wx_energy_meter_reading;
  312. create table wx_energy_meter_reading_12 like wx_energy_meter_reading;
  313. create table wx_energy_meter_reading_13 like wx_energy_meter_reading;
  314. create table wx_energy_meter_reading_14 like wx_energy_meter_reading;
  315. create table wx_energy_meter_reading_15 like wx_energy_meter_reading;
  316. create table wx_energy_meter_reading_16 like wx_energy_meter_reading;
  317. create table wx_energy_meter_reading_17 like wx_energy_meter_reading;
  318. create table wx_energy_meter_reading_18 like wx_energy_meter_reading;
  319. create table wx_energy_meter_reading_19 like wx_energy_meter_reading;
  320. create table wx_energy_meter_reading_20 like wx_energy_meter_reading;
  321. create table wx_energy_meter_reading_21 like wx_energy_meter_reading;
  322. create table wx_energy_meter_reading_22 like wx_energy_meter_reading;
  323. create table wx_energy_meter_reading_23 like wx_energy_meter_reading;
  324. create table wx_energy_meter_reading_24 like wx_energy_meter_reading;
  325. create table wx_energy_meter_reading_25 like wx_energy_meter_reading;
  326. create table wx_energy_meter_reading_26 like wx_energy_meter_reading;
  327. create table wx_energy_meter_reading_27 like wx_energy_meter_reading;
  328. create table wx_energy_meter_reading_28 like wx_energy_meter_reading;
  329. create table wx_energy_meter_reading_29 like wx_energy_meter_reading;
  330. create table wx_energy_meter_reading_30 like wx_energy_meter_reading;
  331. create table wx_energy_meter_reading_31 like wx_energy_meter_reading;
  332. create table wx_energy_meter_reading_32 like wx_energy_meter_reading;
  333. create table wx_energy_meter_reading_33 like wx_energy_meter_reading;
  334. create table wx_energy_meter_reading_34 like wx_energy_meter_reading;
  335. create table wx_energy_meter_reading_35 like wx_energy_meter_reading;
  336. create table wx_energy_meter_reading_36 like wx_energy_meter_reading;
  337. create table wx_energy_meter_reading_37 like wx_energy_meter_reading;
  338. create table wx_energy_meter_reading_38 like wx_energy_meter_reading;
  339. create table wx_energy_meter_reading_39 like wx_energy_meter_reading;
  340. create table wx_energy_meter_reading_40 like wx_energy_meter_reading;
  341. create table wx_energy_meter_reading_41 like wx_energy_meter_reading;
  342. create table wx_energy_meter_reading_42 like wx_energy_meter_reading;
  343. create table wx_energy_meter_reading_43 like wx_energy_meter_reading;
  344. create table wx_energy_meter_reading_44 like wx_energy_meter_reading;
  345. create table wx_energy_meter_reading_45 like wx_energy_meter_reading;
  346. create table wx_energy_meter_reading_46 like wx_energy_meter_reading;
  347. create table wx_energy_meter_reading_47 like wx_energy_meter_reading;
  348. create table wx_energy_meter_reading_48 like wx_energy_meter_reading;
  349. create table wx_energy_meter_reading_49 like wx_energy_meter_reading;
  350. create table wx_energy_meter_reading_50 like wx_energy_meter_reading;
  351. create table wx_energy_meter_reading_51 like wx_energy_meter_reading;
  352. create table wx_energy_meter_reading_52 like wx_energy_meter_reading;
  353. create table wx_energy_meter_reading_53 like wx_energy_meter_reading;
  354. create table wx_energy_meter_reading_54 like wx_energy_meter_reading;
  355. create table wx_energy_meter_reading_55 like wx_energy_meter_reading;
  356. create table wx_energy_meter_reading_56 like wx_energy_meter_reading;
  357. create table wx_energy_meter_reading_57 like wx_energy_meter_reading;
  358. create table wx_energy_meter_reading_58 like wx_energy_meter_reading;
  359. create table wx_energy_meter_reading_59 like wx_energy_meter_reading;
  360. create table wx_energy_meter_reading_60 like wx_energy_meter_reading;
  361. create table wx_energy_meter_reading_61 like wx_energy_meter_reading;
  362. create table wx_energy_meter_reading_62 like wx_energy_meter_reading;
  363. create table wx_energy_meter_reading_63 like wx_energy_meter_reading;
  364. create table wx_energy_meter_reading_64 like wx_energy_meter_reading;
  365. create table wx_energy_meter_reading_65 like wx_energy_meter_reading;
  366. create table wx_energy_meter_reading_66 like wx_energy_meter_reading;
  367. create table wx_energy_meter_reading_67 like wx_energy_meter_reading;
  368. create table wx_energy_meter_reading_68 like wx_energy_meter_reading;
  369. create table wx_energy_meter_reading_69 like wx_energy_meter_reading;
  370. create table wx_energy_meter_reading_70 like wx_energy_meter_reading;
  371. create table wx_energy_meter_reading_71 like wx_energy_meter_reading;
  372. create table wx_energy_meter_reading_72 like wx_energy_meter_reading;
  373. create table wx_energy_meter_reading_73 like wx_energy_meter_reading;
  374. create table wx_energy_meter_reading_74 like wx_energy_meter_reading;
  375. create table wx_energy_meter_reading_75 like wx_energy_meter_reading;
  376. create table wx_energy_meter_reading_76 like wx_energy_meter_reading;
  377. create table wx_energy_meter_reading_77 like wx_energy_meter_reading;
  378. create table wx_energy_meter_reading_78 like wx_energy_meter_reading;
  379. create table wx_energy_meter_reading_79 like wx_energy_meter_reading;
  380. create table wx_energy_meter_reading_80 like wx_energy_meter_reading;
  381. create table wx_energy_meter_reading_81 like wx_energy_meter_reading;
  382. create table wx_energy_meter_reading_82 like wx_energy_meter_reading;
  383. create table wx_energy_meter_reading_83 like wx_energy_meter_reading;
  384. create table wx_energy_meter_reading_84 like wx_energy_meter_reading;
  385. create table wx_energy_meter_reading_85 like wx_energy_meter_reading;
  386. create table wx_energy_meter_reading_86 like wx_energy_meter_reading;
  387. create table wx_energy_meter_reading_87 like wx_energy_meter_reading;
  388. create table wx_energy_meter_reading_88 like wx_energy_meter_reading;
  389. create table wx_energy_meter_reading_89 like wx_energy_meter_reading;
  390. create table wx_energy_meter_reading_90 like wx_energy_meter_reading;
  391. create table wx_energy_meter_reading_91 like wx_energy_meter_reading;
  392. create table wx_energy_meter_reading_92 like wx_energy_meter_reading;
  393. create table wx_energy_meter_reading_93 like wx_energy_meter_reading;
  394. create table wx_energy_meter_reading_94 like wx_energy_meter_reading;
  395. create table wx_energy_meter_reading_95 like wx_energy_meter_reading;
  396. create table wx_energy_meter_reading_96 like wx_energy_meter_reading;
  397. create table wx_energy_meter_reading_97 like wx_energy_meter_reading;
  398. create table wx_energy_meter_reading_98 like wx_energy_meter_reading;
  399. create table wx_energy_meter_reading_99 like wx_energy_meter_reading;
  400. drop table wx_energy_meter_reading;
  401. alter table wx_bill_rent_0 modify column pay_way bigint(20);
  402. alter table wx_bill_rent_1 modify column pay_way bigint(20);
  403. alter table wx_bill_rent_2 modify column pay_way bigint(20);
  404. alter table wx_bill_rent_3 modify column pay_way bigint(20);
  405. alter table wx_bill_rent_4 modify column pay_way bigint(20);
  406. alter table wx_bill_rent_5 modify column pay_way bigint(20);
  407. alter table wx_bill_rent_6 modify column pay_way bigint(20);
  408. alter table wx_bill_rent_7 modify column pay_way bigint(20);
  409. alter table wx_bill_rent_8 modify column pay_way bigint(20);
  410. alter table wx_bill_rent_9 modify column pay_way bigint(20);
  411. alter table wx_bill_rent_10 modify column pay_way bigint(20);
  412. alter table wx_bill_rent_11 modify column pay_way bigint(20);
  413. alter table wx_bill_rent_12 modify column pay_way bigint(20);
  414. alter table wx_bill_rent_13 modify column pay_way bigint(20);
  415. alter table wx_bill_rent_14 modify column pay_way bigint(20);
  416. alter table wx_bill_rent_15 modify column pay_way bigint(20);
  417. alter table wx_bill_rent_16 modify column pay_way bigint(20);
  418. alter table wx_bill_rent_17 modify column pay_way bigint(20);
  419. alter table wx_bill_rent_18 modify column pay_way bigint(20);
  420. alter table wx_bill_rent_19 modify column pay_way bigint(20);
  421. alter table wx_bill_rent_20 modify column pay_way bigint(20);
  422. alter table wx_bill_rent_21 modify column pay_way bigint(20);
  423. alter table wx_bill_rent_22 modify column pay_way bigint(20);
  424. alter table wx_bill_rent_23 modify column pay_way bigint(20);
  425. alter table wx_bill_rent_24 modify column pay_way bigint(20);
  426. alter table wx_bill_rent_25 modify column pay_way bigint(20);
  427. alter table wx_bill_rent_26 modify column pay_way bigint(20);
  428. alter table wx_bill_rent_27 modify column pay_way bigint(20);
  429. alter table wx_bill_rent_28 modify column pay_way bigint(20);
  430. alter table wx_bill_rent_29 modify column pay_way bigint(20);
  431. alter table wx_bill_rent_30 modify column pay_way bigint(20);
  432. alter table wx_bill_rent_31 modify column pay_way bigint(20);
  433. alter table wx_bill_rent_32 modify column pay_way bigint(20);
  434. alter table wx_bill_rent_33 modify column pay_way bigint(20);
  435. alter table wx_bill_rent_34 modify column pay_way bigint(20);
  436. alter table wx_bill_rent_35 modify column pay_way bigint(20);
  437. alter table wx_bill_rent_36 modify column pay_way bigint(20);
  438. alter table wx_bill_rent_37 modify column pay_way bigint(20);
  439. alter table wx_bill_rent_38 modify column pay_way bigint(20);
  440. alter table wx_bill_rent_39 modify column pay_way bigint(20);
  441. alter table wx_bill_rent_40 modify column pay_way bigint(20);
  442. alter table wx_bill_rent_41 modify column pay_way bigint(20);
  443. alter table wx_bill_rent_42 modify column pay_way bigint(20);
  444. alter table wx_bill_rent_43 modify column pay_way bigint(20);
  445. alter table wx_bill_rent_44 modify column pay_way bigint(20);
  446. alter table wx_bill_rent_45 modify column pay_way bigint(20);
  447. alter table wx_bill_rent_46 modify column pay_way bigint(20);
  448. alter table wx_bill_rent_47 modify column pay_way bigint(20);
  449. alter table wx_bill_rent_48 modify column pay_way bigint(20);
  450. alter table wx_bill_rent_49 modify column pay_way bigint(20);
  451. alter table wx_bill_rent_50 modify column pay_way bigint(20);
  452. alter table wx_bill_rent_51 modify column pay_way bigint(20);
  453. alter table wx_bill_rent_52 modify column pay_way bigint(20);
  454. alter table wx_bill_rent_53 modify column pay_way bigint(20);
  455. alter table wx_bill_rent_54 modify column pay_way bigint(20);
  456. alter table wx_bill_rent_55 modify column pay_way bigint(20);
  457. alter table wx_bill_rent_56 modify column pay_way bigint(20);
  458. alter table wx_bill_rent_57 modify column pay_way bigint(20);
  459. alter table wx_bill_rent_58 modify column pay_way bigint(20);
  460. alter table wx_bill_rent_59 modify column pay_way bigint(20);
  461. alter table wx_bill_rent_60 modify column pay_way bigint(20);
  462. alter table wx_bill_rent_61 modify column pay_way bigint(20);
  463. alter table wx_bill_rent_62 modify column pay_way bigint(20);
  464. alter table wx_bill_rent_63 modify column pay_way bigint(20);
  465. alter table wx_bill_rent_64 modify column pay_way bigint(20);
  466. alter table wx_bill_rent_65 modify column pay_way bigint(20);
  467. alter table wx_bill_rent_66 modify column pay_way bigint(20);
  468. alter table wx_bill_rent_67 modify column pay_way bigint(20);
  469. alter table wx_bill_rent_68 modify column pay_way bigint(20);
  470. alter table wx_bill_rent_69 modify column pay_way bigint(20);
  471. alter table wx_bill_rent_70 modify column pay_way bigint(20);
  472. alter table wx_bill_rent_71 modify column pay_way bigint(20);
  473. alter table wx_bill_rent_72 modify column pay_way bigint(20);
  474. alter table wx_bill_rent_73 modify column pay_way bigint(20);
  475. alter table wx_bill_rent_74 modify column pay_way bigint(20);
  476. alter table wx_bill_rent_75 modify column pay_way bigint(20);
  477. alter table wx_bill_rent_76 modify column pay_way bigint(20);
  478. alter table wx_bill_rent_77 modify column pay_way bigint(20);
  479. alter table wx_bill_rent_78 modify column pay_way bigint(20);
  480. alter table wx_bill_rent_79 modify column pay_way bigint(20);
  481. alter table wx_bill_rent_80 modify column pay_way bigint(20);
  482. alter table wx_bill_rent_81 modify column pay_way bigint(20);
  483. alter table wx_bill_rent_82 modify column pay_way bigint(20);
  484. alter table wx_bill_rent_83 modify column pay_way bigint(20);
  485. alter table wx_bill_rent_84 modify column pay_way bigint(20);
  486. alter table wx_bill_rent_85 modify column pay_way bigint(20);
  487. alter table wx_bill_rent_86 modify column pay_way bigint(20);
  488. alter table wx_bill_rent_87 modify column pay_way bigint(20);
  489. alter table wx_bill_rent_88 modify column pay_way bigint(20);
  490. alter table wx_bill_rent_89 modify column pay_way bigint(20);
  491. alter table wx_bill_rent_90 modify column pay_way bigint(20);
  492. alter table wx_bill_rent_91 modify column pay_way bigint(20);
  493. alter table wx_bill_rent_92 modify column pay_way bigint(20);
  494. alter table wx_bill_rent_93 modify column pay_way bigint(20);
  495. alter table wx_bill_rent_94 modify column pay_way bigint(20);
  496. alter table wx_bill_rent_95 modify column pay_way bigint(20);
  497. alter table wx_bill_rent_96 modify column pay_way bigint(20);
  498. alter table wx_bill_rent_97 modify column pay_way bigint(20);
  499. alter table wx_bill_rent_98 modify column pay_way bigint(20);
  500. alter table wx_bill_rent_99 modify column pay_way bigint(20);
  501. alter table wx_bill_action_0 modify column pay_way bigint(20);
  502. alter table wx_bill_action_1 modify column pay_way bigint(20);
  503. alter table wx_bill_action_2 modify column pay_way bigint(20);
  504. alter table wx_bill_action_3 modify column pay_way bigint(20);
  505. alter table wx_bill_action_4 modify column pay_way bigint(20);
  506. alter table wx_bill_action_5 modify column pay_way bigint(20);
  507. alter table wx_bill_action_6 modify column pay_way bigint(20);
  508. alter table wx_bill_action_7 modify column pay_way bigint(20);
  509. alter table wx_bill_action_8 modify column pay_way bigint(20);
  510. alter table wx_bill_action_9 modify column pay_way bigint(20);
  511. alter table wx_bill_action_10 modify column pay_way bigint(20);
  512. alter table wx_bill_action_11 modify column pay_way bigint(20);
  513. alter table wx_bill_action_12 modify column pay_way bigint(20);
  514. alter table wx_bill_action_13 modify column pay_way bigint(20);
  515. alter table wx_bill_action_14 modify column pay_way bigint(20);
  516. alter table wx_bill_action_15 modify column pay_way bigint(20);
  517. alter table wx_bill_action_16 modify column pay_way bigint(20);
  518. alter table wx_bill_action_17 modify column pay_way bigint(20);
  519. alter table wx_bill_action_18 modify column pay_way bigint(20);
  520. alter table wx_bill_action_19 modify column pay_way bigint(20);
  521. alter table wx_bill_action_20 modify column pay_way bigint(20);
  522. alter table wx_bill_action_21 modify column pay_way bigint(20);
  523. alter table wx_bill_action_22 modify column pay_way bigint(20);
  524. alter table wx_bill_action_23 modify column pay_way bigint(20);
  525. alter table wx_bill_action_24 modify column pay_way bigint(20);
  526. alter table wx_bill_action_25 modify column pay_way bigint(20);
  527. alter table wx_bill_action_26 modify column pay_way bigint(20);
  528. alter table wx_bill_action_27 modify column pay_way bigint(20);
  529. alter table wx_bill_action_28 modify column pay_way bigint(20);
  530. alter table wx_bill_action_29 modify column pay_way bigint(20);
  531. alter table wx_bill_action_30 modify column pay_way bigint(20);
  532. alter table wx_bill_action_31 modify column pay_way bigint(20);
  533. alter table wx_bill_action_32 modify column pay_way bigint(20);
  534. alter table wx_bill_action_33 modify column pay_way bigint(20);
  535. alter table wx_bill_action_34 modify column pay_way bigint(20);
  536. alter table wx_bill_action_35 modify column pay_way bigint(20);
  537. alter table wx_bill_action_36 modify column pay_way bigint(20);
  538. alter table wx_bill_action_37 modify column pay_way bigint(20);
  539. alter table wx_bill_action_38 modify column pay_way bigint(20);
  540. alter table wx_bill_action_39 modify column pay_way bigint(20);
  541. alter table wx_bill_action_40 modify column pay_way bigint(20);
  542. alter table wx_bill_action_41 modify column pay_way bigint(20);
  543. alter table wx_bill_action_42 modify column pay_way bigint(20);
  544. alter table wx_bill_action_43 modify column pay_way bigint(20);
  545. alter table wx_bill_action_44 modify column pay_way bigint(20);
  546. alter table wx_bill_action_45 modify column pay_way bigint(20);
  547. alter table wx_bill_action_46 modify column pay_way bigint(20);
  548. alter table wx_bill_action_47 modify column pay_way bigint(20);
  549. alter table wx_bill_action_48 modify column pay_way bigint(20);
  550. alter table wx_bill_action_49 modify column pay_way bigint(20);
  551. alter table wx_bill_action_50 modify column pay_way bigint(20);
  552. alter table wx_bill_action_51 modify column pay_way bigint(20);
  553. alter table wx_bill_action_52 modify column pay_way bigint(20);
  554. alter table wx_bill_action_53 modify column pay_way bigint(20);
  555. alter table wx_bill_action_54 modify column pay_way bigint(20);
  556. alter table wx_bill_action_55 modify column pay_way bigint(20);
  557. alter table wx_bill_action_56 modify column pay_way bigint(20);
  558. alter table wx_bill_action_57 modify column pay_way bigint(20);
  559. alter table wx_bill_action_58 modify column pay_way bigint(20);
  560. alter table wx_bill_action_59 modify column pay_way bigint(20);
  561. alter table wx_bill_action_60 modify column pay_way bigint(20);
  562. alter table wx_bill_action_61 modify column pay_way bigint(20);
  563. alter table wx_bill_action_62 modify column pay_way bigint(20);
  564. alter table wx_bill_action_63 modify column pay_way bigint(20);
  565. alter table wx_bill_action_64 modify column pay_way bigint(20);
  566. alter table wx_bill_action_65 modify column pay_way bigint(20);
  567. alter table wx_bill_action_66 modify column pay_way bigint(20);
  568. alter table wx_bill_action_67 modify column pay_way bigint(20);
  569. alter table wx_bill_action_68 modify column pay_way bigint(20);
  570. alter table wx_bill_action_69 modify column pay_way bigint(20);
  571. alter table wx_bill_action_70 modify column pay_way bigint(20);
  572. alter table wx_bill_action_71 modify column pay_way bigint(20);
  573. alter table wx_bill_action_72 modify column pay_way bigint(20);
  574. alter table wx_bill_action_73 modify column pay_way bigint(20);
  575. alter table wx_bill_action_74 modify column pay_way bigint(20);
  576. alter table wx_bill_action_75 modify column pay_way bigint(20);
  577. alter table wx_bill_action_76 modify column pay_way bigint(20);
  578. alter table wx_bill_action_77 modify column pay_way bigint(20);
  579. alter table wx_bill_action_78 modify column pay_way bigint(20);
  580. alter table wx_bill_action_79 modify column pay_way bigint(20);
  581. alter table wx_bill_action_80 modify column pay_way bigint(20);
  582. alter table wx_bill_action_81 modify column pay_way bigint(20);
  583. alter table wx_bill_action_82 modify column pay_way bigint(20);
  584. alter table wx_bill_action_83 modify column pay_way bigint(20);
  585. alter table wx_bill_action_84 modify column pay_way bigint(20);
  586. alter table wx_bill_action_85 modify column pay_way bigint(20);
  587. alter table wx_bill_action_86 modify column pay_way bigint(20);
  588. alter table wx_bill_action_87 modify column pay_way bigint(20);
  589. alter table wx_bill_action_88 modify column pay_way bigint(20);
  590. alter table wx_bill_action_89 modify column pay_way bigint(20);
  591. alter table wx_bill_action_90 modify column pay_way bigint(20);
  592. alter table wx_bill_action_91 modify column pay_way bigint(20);
  593. alter table wx_bill_action_92 modify column pay_way bigint(20);
  594. alter table wx_bill_action_93 modify column pay_way bigint(20);
  595. alter table wx_bill_action_94 modify column pay_way bigint(20);
  596. alter table wx_bill_action_95 modify column pay_way bigint(20);
  597. alter table wx_bill_action_96 modify column pay_way bigint(20);
  598. alter table wx_bill_action_97 modify column pay_way bigint(20);
  599. alter table wx_bill_action_98 modify column pay_way bigint(20);
  600. alter table wx_bill_action_99 modify column pay_way bigint(20);
  601. alter table wx_bill_rent_manage_0 modify column pay_way bigint(20);
  602. alter table wx_bill_rent_manage_1 modify column pay_way bigint(20);
  603. alter table wx_bill_rent_manage_2 modify column pay_way bigint(20);
  604. alter table wx_bill_rent_manage_3 modify column pay_way bigint(20);
  605. alter table wx_bill_rent_manage_4 modify column pay_way bigint(20);
  606. alter table wx_bill_rent_manage_5 modify column pay_way bigint(20);
  607. alter table wx_bill_rent_manage_6 modify column pay_way bigint(20);
  608. alter table wx_bill_rent_manage_7 modify column pay_way bigint(20);
  609. alter table wx_bill_rent_manage_8 modify column pay_way bigint(20);
  610. alter table wx_bill_rent_manage_9 modify column pay_way bigint(20);
  611. alter table wx_bill_rent_manage_10 modify column pay_way bigint(20);
  612. alter table wx_bill_rent_manage_11 modify column pay_way bigint(20);
  613. alter table wx_bill_rent_manage_12 modify column pay_way bigint(20);
  614. alter table wx_bill_rent_manage_13 modify column pay_way bigint(20);
  615. alter table wx_bill_rent_manage_14 modify column pay_way bigint(20);
  616. alter table wx_bill_rent_manage_15 modify column pay_way bigint(20);
  617. alter table wx_bill_rent_manage_16 modify column pay_way bigint(20);
  618. alter table wx_bill_rent_manage_17 modify column pay_way bigint(20);
  619. alter table wx_bill_rent_manage_18 modify column pay_way bigint(20);
  620. alter table wx_bill_rent_manage_19 modify column pay_way bigint(20);
  621. alter table wx_bill_rent_manage_20 modify column pay_way bigint(20);
  622. alter table wx_bill_rent_manage_21 modify column pay_way bigint(20);
  623. alter table wx_bill_rent_manage_22 modify column pay_way bigint(20);
  624. alter table wx_bill_rent_manage_23 modify column pay_way bigint(20);
  625. alter table wx_bill_rent_manage_24 modify column pay_way bigint(20);
  626. alter table wx_bill_rent_manage_25 modify column pay_way bigint(20);
  627. alter table wx_bill_rent_manage_26 modify column pay_way bigint(20);
  628. alter table wx_bill_rent_manage_27 modify column pay_way bigint(20);
  629. alter table wx_bill_rent_manage_28 modify column pay_way bigint(20);
  630. alter table wx_bill_rent_manage_29 modify column pay_way bigint(20);
  631. alter table wx_bill_rent_manage_30 modify column pay_way bigint(20);
  632. alter table wx_bill_rent_manage_31 modify column pay_way bigint(20);
  633. alter table wx_bill_rent_manage_32 modify column pay_way bigint(20);
  634. alter table wx_bill_rent_manage_33 modify column pay_way bigint(20);
  635. alter table wx_bill_rent_manage_34 modify column pay_way bigint(20);
  636. alter table wx_bill_rent_manage_35 modify column pay_way bigint(20);
  637. alter table wx_bill_rent_manage_36 modify column pay_way bigint(20);
  638. alter table wx_bill_rent_manage_37 modify column pay_way bigint(20);
  639. alter table wx_bill_rent_manage_38 modify column pay_way bigint(20);
  640. alter table wx_bill_rent_manage_39 modify column pay_way bigint(20);
  641. alter table wx_bill_rent_manage_40 modify column pay_way bigint(20);
  642. alter table wx_bill_rent_manage_41 modify column pay_way bigint(20);
  643. alter table wx_bill_rent_manage_42 modify column pay_way bigint(20);
  644. alter table wx_bill_rent_manage_43 modify column pay_way bigint(20);
  645. alter table wx_bill_rent_manage_44 modify column pay_way bigint(20);
  646. alter table wx_bill_rent_manage_45 modify column pay_way bigint(20);
  647. alter table wx_bill_rent_manage_46 modify column pay_way bigint(20);
  648. alter table wx_bill_rent_manage_47 modify column pay_way bigint(20);
  649. alter table wx_bill_rent_manage_48 modify column pay_way bigint(20);
  650. alter table wx_bill_rent_manage_49 modify column pay_way bigint(20);
  651. alter table wx_bill_rent_manage_50 modify column pay_way bigint(20);
  652. alter table wx_bill_rent_manage_51 modify column pay_way bigint(20);
  653. alter table wx_bill_rent_manage_52 modify column pay_way bigint(20);
  654. alter table wx_bill_rent_manage_53 modify column pay_way bigint(20);
  655. alter table wx_bill_rent_manage_54 modify column pay_way bigint(20);
  656. alter table wx_bill_rent_manage_55 modify column pay_way bigint(20);
  657. alter table wx_bill_rent_manage_56 modify column pay_way bigint(20);
  658. alter table wx_bill_rent_manage_57 modify column pay_way bigint(20);
  659. alter table wx_bill_rent_manage_58 modify column pay_way bigint(20);
  660. alter table wx_bill_rent_manage_59 modify column pay_way bigint(20);
  661. alter table wx_bill_rent_manage_60 modify column pay_way bigint(20);
  662. alter table wx_bill_rent_manage_61 modify column pay_way bigint(20);
  663. alter table wx_bill_rent_manage_62 modify column pay_way bigint(20);
  664. alter table wx_bill_rent_manage_63 modify column pay_way bigint(20);
  665. alter table wx_bill_rent_manage_64 modify column pay_way bigint(20);
  666. alter table wx_bill_rent_manage_65 modify column pay_way bigint(20);
  667. alter table wx_bill_rent_manage_66 modify column pay_way bigint(20);
  668. alter table wx_bill_rent_manage_67 modify column pay_way bigint(20);
  669. alter table wx_bill_rent_manage_68 modify column pay_way bigint(20);
  670. alter table wx_bill_rent_manage_69 modify column pay_way bigint(20);
  671. alter table wx_bill_rent_manage_70 modify column pay_way bigint(20);
  672. alter table wx_bill_rent_manage_71 modify column pay_way bigint(20);
  673. alter table wx_bill_rent_manage_72 modify column pay_way bigint(20);
  674. alter table wx_bill_rent_manage_73 modify column pay_way bigint(20);
  675. alter table wx_bill_rent_manage_74 modify column pay_way bigint(20);
  676. alter table wx_bill_rent_manage_75 modify column pay_way bigint(20);
  677. alter table wx_bill_rent_manage_76 modify column pay_way bigint(20);
  678. alter table wx_bill_rent_manage_77 modify column pay_way bigint(20);
  679. alter table wx_bill_rent_manage_78 modify column pay_way bigint(20);
  680. alter table wx_bill_rent_manage_79 modify column pay_way bigint(20);
  681. alter table wx_bill_rent_manage_80 modify column pay_way bigint(20);
  682. alter table wx_bill_rent_manage_81 modify column pay_way bigint(20);
  683. alter table wx_bill_rent_manage_82 modify column pay_way bigint(20);
  684. alter table wx_bill_rent_manage_83 modify column pay_way bigint(20);
  685. alter table wx_bill_rent_manage_84 modify column pay_way bigint(20);
  686. alter table wx_bill_rent_manage_85 modify column pay_way bigint(20);
  687. alter table wx_bill_rent_manage_86 modify column pay_way bigint(20);
  688. alter table wx_bill_rent_manage_87 modify column pay_way bigint(20);
  689. alter table wx_bill_rent_manage_88 modify column pay_way bigint(20);
  690. alter table wx_bill_rent_manage_89 modify column pay_way bigint(20);
  691. alter table wx_bill_rent_manage_90 modify column pay_way bigint(20);
  692. alter table wx_bill_rent_manage_91 modify column pay_way bigint(20);
  693. alter table wx_bill_rent_manage_92 modify column pay_way bigint(20);
  694. alter table wx_bill_rent_manage_93 modify column pay_way bigint(20);
  695. alter table wx_bill_rent_manage_94 modify column pay_way bigint(20);
  696. alter table wx_bill_rent_manage_95 modify column pay_way bigint(20);
  697. alter table wx_bill_rent_manage_96 modify column pay_way bigint(20);
  698. alter table wx_bill_rent_manage_97 modify column pay_way bigint(20);
  699. alter table wx_bill_rent_manage_98 modify column pay_way bigint(20);
  700. alter table wx_bill_rent_manage_99 modify column pay_way bigint(20);
  701. alter table wx_bill_rent_deposit_0 modify column pay_way bigint(20);
  702. alter table wx_bill_rent_deposit_1 modify column pay_way bigint(20);
  703. alter table wx_bill_rent_deposit_2 modify column pay_way bigint(20);
  704. alter table wx_bill_rent_deposit_3 modify column pay_way bigint(20);
  705. alter table wx_bill_rent_deposit_4 modify column pay_way bigint(20);
  706. alter table wx_bill_rent_deposit_5 modify column pay_way bigint(20);
  707. alter table wx_bill_rent_deposit_6 modify column pay_way bigint(20);
  708. alter table wx_bill_rent_deposit_7 modify column pay_way bigint(20);
  709. alter table wx_bill_rent_deposit_8 modify column pay_way bigint(20);
  710. alter table wx_bill_rent_deposit_9 modify column pay_way bigint(20);
  711. alter table wx_bill_rent_deposit_10 modify column pay_way bigint(20);
  712. alter table wx_bill_rent_deposit_11 modify column pay_way bigint(20);
  713. alter table wx_bill_rent_deposit_12 modify column pay_way bigint(20);
  714. alter table wx_bill_rent_deposit_13 modify column pay_way bigint(20);
  715. alter table wx_bill_rent_deposit_14 modify column pay_way bigint(20);
  716. alter table wx_bill_rent_deposit_15 modify column pay_way bigint(20);
  717. alter table wx_bill_rent_deposit_16 modify column pay_way bigint(20);
  718. alter table wx_bill_rent_deposit_17 modify column pay_way bigint(20);
  719. alter table wx_bill_rent_deposit_18 modify column pay_way bigint(20);
  720. alter table wx_bill_rent_deposit_19 modify column pay_way bigint(20);
  721. alter table wx_bill_rent_deposit_20 modify column pay_way bigint(20);
  722. alter table wx_bill_rent_deposit_21 modify column pay_way bigint(20);
  723. alter table wx_bill_rent_deposit_22 modify column pay_way bigint(20);
  724. alter table wx_bill_rent_deposit_23 modify column pay_way bigint(20);
  725. alter table wx_bill_rent_deposit_24 modify column pay_way bigint(20);
  726. alter table wx_bill_rent_deposit_25 modify column pay_way bigint(20);
  727. alter table wx_bill_rent_deposit_26 modify column pay_way bigint(20);
  728. alter table wx_bill_rent_deposit_27 modify column pay_way bigint(20);
  729. alter table wx_bill_rent_deposit_28 modify column pay_way bigint(20);
  730. alter table wx_bill_rent_deposit_29 modify column pay_way bigint(20);
  731. alter table wx_bill_rent_deposit_30 modify column pay_way bigint(20);
  732. alter table wx_bill_rent_deposit_31 modify column pay_way bigint(20);
  733. alter table wx_bill_rent_deposit_32 modify column pay_way bigint(20);
  734. alter table wx_bill_rent_deposit_33 modify column pay_way bigint(20);
  735. alter table wx_bill_rent_deposit_34 modify column pay_way bigint(20);
  736. alter table wx_bill_rent_deposit_35 modify column pay_way bigint(20);
  737. alter table wx_bill_rent_deposit_36 modify column pay_way bigint(20);
  738. alter table wx_bill_rent_deposit_37 modify column pay_way bigint(20);
  739. alter table wx_bill_rent_deposit_38 modify column pay_way bigint(20);
  740. alter table wx_bill_rent_deposit_39 modify column pay_way bigint(20);
  741. alter table wx_bill_rent_deposit_40 modify column pay_way bigint(20);
  742. alter table wx_bill_rent_deposit_41 modify column pay_way bigint(20);
  743. alter table wx_bill_rent_deposit_42 modify column pay_way bigint(20);
  744. alter table wx_bill_rent_deposit_43 modify column pay_way bigint(20);
  745. alter table wx_bill_rent_deposit_44 modify column pay_way bigint(20);
  746. alter table wx_bill_rent_deposit_45 modify column pay_way bigint(20);
  747. alter table wx_bill_rent_deposit_46 modify column pay_way bigint(20);
  748. alter table wx_bill_rent_deposit_47 modify column pay_way bigint(20);
  749. alter table wx_bill_rent_deposit_48 modify column pay_way bigint(20);
  750. alter table wx_bill_rent_deposit_49 modify column pay_way bigint(20);
  751. alter table wx_bill_rent_deposit_50 modify column pay_way bigint(20);
  752. alter table wx_bill_rent_deposit_51 modify column pay_way bigint(20);
  753. alter table wx_bill_rent_deposit_52 modify column pay_way bigint(20);
  754. alter table wx_bill_rent_deposit_53 modify column pay_way bigint(20);
  755. alter table wx_bill_rent_deposit_54 modify column pay_way bigint(20);
  756. alter table wx_bill_rent_deposit_55 modify column pay_way bigint(20);
  757. alter table wx_bill_rent_deposit_56 modify column pay_way bigint(20);
  758. alter table wx_bill_rent_deposit_57 modify column pay_way bigint(20);
  759. alter table wx_bill_rent_deposit_58 modify column pay_way bigint(20);
  760. alter table wx_bill_rent_deposit_59 modify column pay_way bigint(20);
  761. alter table wx_bill_rent_deposit_60 modify column pay_way bigint(20);
  762. alter table wx_bill_rent_deposit_61 modify column pay_way bigint(20);
  763. alter table wx_bill_rent_deposit_62 modify column pay_way bigint(20);
  764. alter table wx_bill_rent_deposit_63 modify column pay_way bigint(20);
  765. alter table wx_bill_rent_deposit_64 modify column pay_way bigint(20);
  766. alter table wx_bill_rent_deposit_65 modify column pay_way bigint(20);
  767. alter table wx_bill_rent_deposit_66 modify column pay_way bigint(20);
  768. alter table wx_bill_rent_deposit_67 modify column pay_way bigint(20);
  769. alter table wx_bill_rent_deposit_68 modify column pay_way bigint(20);
  770. alter table wx_bill_rent_deposit_69 modify column pay_way bigint(20);
  771. alter table wx_bill_rent_deposit_70 modify column pay_way bigint(20);
  772. alter table wx_bill_rent_deposit_71 modify column pay_way bigint(20);
  773. alter table wx_bill_rent_deposit_72 modify column pay_way bigint(20);
  774. alter table wx_bill_rent_deposit_73 modify column pay_way bigint(20);
  775. alter table wx_bill_rent_deposit_74 modify column pay_way bigint(20);
  776. alter table wx_bill_rent_deposit_75 modify column pay_way bigint(20);
  777. alter table wx_bill_rent_deposit_76 modify column pay_way bigint(20);
  778. alter table wx_bill_rent_deposit_77 modify column pay_way bigint(20);
  779. alter table wx_bill_rent_deposit_78 modify column pay_way bigint(20);
  780. alter table wx_bill_rent_deposit_79 modify column pay_way bigint(20);
  781. alter table wx_bill_rent_deposit_80 modify column pay_way bigint(20);
  782. alter table wx_bill_rent_deposit_81 modify column pay_way bigint(20);
  783. alter table wx_bill_rent_deposit_82 modify column pay_way bigint(20);
  784. alter table wx_bill_rent_deposit_83 modify column pay_way bigint(20);
  785. alter table wx_bill_rent_deposit_84 modify column pay_way bigint(20);
  786. alter table wx_bill_rent_deposit_85 modify column pay_way bigint(20);
  787. alter table wx_bill_rent_deposit_86 modify column pay_way bigint(20);
  788. alter table wx_bill_rent_deposit_87 modify column pay_way bigint(20);
  789. alter table wx_bill_rent_deposit_88 modify column pay_way bigint(20);
  790. alter table wx_bill_rent_deposit_89 modify column pay_way bigint(20);
  791. alter table wx_bill_rent_deposit_90 modify column pay_way bigint(20);
  792. alter table wx_bill_rent_deposit_91 modify column pay_way bigint(20);
  793. alter table wx_bill_rent_deposit_92 modify column pay_way bigint(20);
  794. alter table wx_bill_rent_deposit_93 modify column pay_way bigint(20);
  795. alter table wx_bill_rent_deposit_94 modify column pay_way bigint(20);
  796. alter table wx_bill_rent_deposit_95 modify column pay_way bigint(20);
  797. alter table wx_bill_rent_deposit_96 modify column pay_way bigint(20);
  798. alter table wx_bill_rent_deposit_97 modify column pay_way bigint(20);
  799. alter table wx_bill_rent_deposit_98 modify column pay_way bigint(20);
  800. alter table wx_bill_rent_deposit_99 modify column pay_way bigint(20);
  801. alter table wx_bill_property_0 modify column pay_way bigint(20);
  802. alter table wx_bill_property_1 modify column pay_way bigint(20);
  803. alter table wx_bill_property_2 modify column pay_way bigint(20);
  804. alter table wx_bill_property_3 modify column pay_way bigint(20);
  805. alter table wx_bill_property_4 modify column pay_way bigint(20);
  806. alter table wx_bill_property_5 modify column pay_way bigint(20);
  807. alter table wx_bill_property_6 modify column pay_way bigint(20);
  808. alter table wx_bill_property_7 modify column pay_way bigint(20);
  809. alter table wx_bill_property_8 modify column pay_way bigint(20);
  810. alter table wx_bill_property_9 modify column pay_way bigint(20);
  811. alter table wx_bill_property_10 modify column pay_way bigint(20);
  812. alter table wx_bill_property_11 modify column pay_way bigint(20);
  813. alter table wx_bill_property_12 modify column pay_way bigint(20);
  814. alter table wx_bill_property_13 modify column pay_way bigint(20);
  815. alter table wx_bill_property_14 modify column pay_way bigint(20);
  816. alter table wx_bill_property_15 modify column pay_way bigint(20);
  817. alter table wx_bill_property_16 modify column pay_way bigint(20);
  818. alter table wx_bill_property_17 modify column pay_way bigint(20);
  819. alter table wx_bill_property_18 modify column pay_way bigint(20);
  820. alter table wx_bill_property_19 modify column pay_way bigint(20);
  821. alter table wx_bill_property_20 modify column pay_way bigint(20);
  822. alter table wx_bill_property_21 modify column pay_way bigint(20);
  823. alter table wx_bill_property_22 modify column pay_way bigint(20);
  824. alter table wx_bill_property_23 modify column pay_way bigint(20);
  825. alter table wx_bill_property_24 modify column pay_way bigint(20);
  826. alter table wx_bill_property_25 modify column pay_way bigint(20);
  827. alter table wx_bill_property_26 modify column pay_way bigint(20);
  828. alter table wx_bill_property_27 modify column pay_way bigint(20);
  829. alter table wx_bill_property_28 modify column pay_way bigint(20);
  830. alter table wx_bill_property_29 modify column pay_way bigint(20);
  831. alter table wx_bill_property_30 modify column pay_way bigint(20);
  832. alter table wx_bill_property_31 modify column pay_way bigint(20);
  833. alter table wx_bill_property_32 modify column pay_way bigint(20);
  834. alter table wx_bill_property_33 modify column pay_way bigint(20);
  835. alter table wx_bill_property_34 modify column pay_way bigint(20);
  836. alter table wx_bill_property_35 modify column pay_way bigint(20);
  837. alter table wx_bill_property_36 modify column pay_way bigint(20);
  838. alter table wx_bill_property_37 modify column pay_way bigint(20);
  839. alter table wx_bill_property_38 modify column pay_way bigint(20);
  840. alter table wx_bill_property_39 modify column pay_way bigint(20);
  841. alter table wx_bill_property_40 modify column pay_way bigint(20);
  842. alter table wx_bill_property_41 modify column pay_way bigint(20);
  843. alter table wx_bill_property_42 modify column pay_way bigint(20);
  844. alter table wx_bill_property_43 modify column pay_way bigint(20);
  845. alter table wx_bill_property_44 modify column pay_way bigint(20);
  846. alter table wx_bill_property_45 modify column pay_way bigint(20);
  847. alter table wx_bill_property_46 modify column pay_way bigint(20);
  848. alter table wx_bill_property_47 modify column pay_way bigint(20);
  849. alter table wx_bill_property_48 modify column pay_way bigint(20);
  850. alter table wx_bill_property_49 modify column pay_way bigint(20);
  851. alter table wx_bill_property_50 modify column pay_way bigint(20);
  852. alter table wx_bill_property_51 modify column pay_way bigint(20);
  853. alter table wx_bill_property_52 modify column pay_way bigint(20);
  854. alter table wx_bill_property_53 modify column pay_way bigint(20);
  855. alter table wx_bill_property_54 modify column pay_way bigint(20);
  856. alter table wx_bill_property_55 modify column pay_way bigint(20);
  857. alter table wx_bill_property_56 modify column pay_way bigint(20);
  858. alter table wx_bill_property_57 modify column pay_way bigint(20);
  859. alter table wx_bill_property_58 modify column pay_way bigint(20);
  860. alter table wx_bill_property_59 modify column pay_way bigint(20);
  861. alter table wx_bill_property_60 modify column pay_way bigint(20);
  862. alter table wx_bill_property_61 modify column pay_way bigint(20);
  863. alter table wx_bill_property_62 modify column pay_way bigint(20);
  864. alter table wx_bill_property_63 modify column pay_way bigint(20);
  865. alter table wx_bill_property_64 modify column pay_way bigint(20);
  866. alter table wx_bill_property_65 modify column pay_way bigint(20);
  867. alter table wx_bill_property_66 modify column pay_way bigint(20);
  868. alter table wx_bill_property_67 modify column pay_way bigint(20);
  869. alter table wx_bill_property_68 modify column pay_way bigint(20);
  870. alter table wx_bill_property_69 modify column pay_way bigint(20);
  871. alter table wx_bill_property_70 modify column pay_way bigint(20);
  872. alter table wx_bill_property_71 modify column pay_way bigint(20);
  873. alter table wx_bill_property_72 modify column pay_way bigint(20);
  874. alter table wx_bill_property_73 modify column pay_way bigint(20);
  875. alter table wx_bill_property_74 modify column pay_way bigint(20);
  876. alter table wx_bill_property_75 modify column pay_way bigint(20);
  877. alter table wx_bill_property_76 modify column pay_way bigint(20);
  878. alter table wx_bill_property_77 modify column pay_way bigint(20);
  879. alter table wx_bill_property_78 modify column pay_way bigint(20);
  880. alter table wx_bill_property_79 modify column pay_way bigint(20);
  881. alter table wx_bill_property_80 modify column pay_way bigint(20);
  882. alter table wx_bill_property_81 modify column pay_way bigint(20);
  883. alter table wx_bill_property_82 modify column pay_way bigint(20);
  884. alter table wx_bill_property_83 modify column pay_way bigint(20);
  885. alter table wx_bill_property_84 modify column pay_way bigint(20);
  886. alter table wx_bill_property_85 modify column pay_way bigint(20);
  887. alter table wx_bill_property_86 modify column pay_way bigint(20);
  888. alter table wx_bill_property_87 modify column pay_way bigint(20);
  889. alter table wx_bill_property_88 modify column pay_way bigint(20);
  890. alter table wx_bill_property_89 modify column pay_way bigint(20);
  891. alter table wx_bill_property_90 modify column pay_way bigint(20);
  892. alter table wx_bill_property_91 modify column pay_way bigint(20);
  893. alter table wx_bill_property_92 modify column pay_way bigint(20);
  894. alter table wx_bill_property_93 modify column pay_way bigint(20);
  895. alter table wx_bill_property_94 modify column pay_way bigint(20);
  896. alter table wx_bill_property_95 modify column pay_way bigint(20);
  897. alter table wx_bill_property_96 modify column pay_way bigint(20);
  898. alter table wx_bill_property_97 modify column pay_way bigint(20);
  899. alter table wx_bill_property_98 modify column pay_way bigint(20);
  900. alter table wx_bill_property_99 modify column pay_way bigint(20);
  901. alter table wx_bill_property_deposit_0 modify column pay_way bigint(20);
  902. alter table wx_bill_property_deposit_1 modify column pay_way bigint(20);
  903. alter table wx_bill_property_deposit_2 modify column pay_way bigint(20);
  904. alter table wx_bill_property_deposit_3 modify column pay_way bigint(20);
  905. alter table wx_bill_property_deposit_4 modify column pay_way bigint(20);
  906. alter table wx_bill_property_deposit_5 modify column pay_way bigint(20);
  907. alter table wx_bill_property_deposit_6 modify column pay_way bigint(20);
  908. alter table wx_bill_property_deposit_7 modify column pay_way bigint(20);
  909. alter table wx_bill_property_deposit_8 modify column pay_way bigint(20);
  910. alter table wx_bill_property_deposit_9 modify column pay_way bigint(20);
  911. alter table wx_bill_property_deposit_10 modify column pay_way bigint(20);
  912. alter table wx_bill_property_deposit_11 modify column pay_way bigint(20);
  913. alter table wx_bill_property_deposit_12 modify column pay_way bigint(20);
  914. alter table wx_bill_property_deposit_13 modify column pay_way bigint(20);
  915. alter table wx_bill_property_deposit_14 modify column pay_way bigint(20);
  916. alter table wx_bill_property_deposit_15 modify column pay_way bigint(20);
  917. alter table wx_bill_property_deposit_16 modify column pay_way bigint(20);
  918. alter table wx_bill_property_deposit_17 modify column pay_way bigint(20);
  919. alter table wx_bill_property_deposit_18 modify column pay_way bigint(20);
  920. alter table wx_bill_property_deposit_19 modify column pay_way bigint(20);
  921. alter table wx_bill_property_deposit_20 modify column pay_way bigint(20);
  922. alter table wx_bill_property_deposit_21 modify column pay_way bigint(20);
  923. alter table wx_bill_property_deposit_22 modify column pay_way bigint(20);
  924. alter table wx_bill_property_deposit_23 modify column pay_way bigint(20);
  925. alter table wx_bill_property_deposit_24 modify column pay_way bigint(20);
  926. alter table wx_bill_property_deposit_25 modify column pay_way bigint(20);
  927. alter table wx_bill_property_deposit_26 modify column pay_way bigint(20);
  928. alter table wx_bill_property_deposit_27 modify column pay_way bigint(20);
  929. alter table wx_bill_property_deposit_28 modify column pay_way bigint(20);
  930. alter table wx_bill_property_deposit_29 modify column pay_way bigint(20);
  931. alter table wx_bill_property_deposit_30 modify column pay_way bigint(20);
  932. alter table wx_bill_property_deposit_31 modify column pay_way bigint(20);
  933. alter table wx_bill_property_deposit_32 modify column pay_way bigint(20);
  934. alter table wx_bill_property_deposit_33 modify column pay_way bigint(20);
  935. alter table wx_bill_property_deposit_34 modify column pay_way bigint(20);
  936. alter table wx_bill_property_deposit_35 modify column pay_way bigint(20);
  937. alter table wx_bill_property_deposit_36 modify column pay_way bigint(20);
  938. alter table wx_bill_property_deposit_37 modify column pay_way bigint(20);
  939. alter table wx_bill_property_deposit_38 modify column pay_way bigint(20);
  940. alter table wx_bill_property_deposit_39 modify column pay_way bigint(20);
  941. alter table wx_bill_property_deposit_40 modify column pay_way bigint(20);
  942. alter table wx_bill_property_deposit_41 modify column pay_way bigint(20);
  943. alter table wx_bill_property_deposit_42 modify column pay_way bigint(20);
  944. alter table wx_bill_property_deposit_43 modify column pay_way bigint(20);
  945. alter table wx_bill_property_deposit_44 modify column pay_way bigint(20);
  946. alter table wx_bill_property_deposit_45 modify column pay_way bigint(20);
  947. alter table wx_bill_property_deposit_46 modify column pay_way bigint(20);
  948. alter table wx_bill_property_deposit_47 modify column pay_way bigint(20);
  949. alter table wx_bill_property_deposit_48 modify column pay_way bigint(20);
  950. alter table wx_bill_property_deposit_49 modify column pay_way bigint(20);
  951. alter table wx_bill_property_deposit_50 modify column pay_way bigint(20);
  952. alter table wx_bill_property_deposit_51 modify column pay_way bigint(20);
  953. alter table wx_bill_property_deposit_52 modify column pay_way bigint(20);
  954. alter table wx_bill_property_deposit_53 modify column pay_way bigint(20);
  955. alter table wx_bill_property_deposit_54 modify column pay_way bigint(20);
  956. alter table wx_bill_property_deposit_55 modify column pay_way bigint(20);
  957. alter table wx_bill_property_deposit_56 modify column pay_way bigint(20);
  958. alter table wx_bill_property_deposit_57 modify column pay_way bigint(20);
  959. alter table wx_bill_property_deposit_58 modify column pay_way bigint(20);
  960. alter table wx_bill_property_deposit_59 modify column pay_way bigint(20);
  961. alter table wx_bill_property_deposit_60 modify column pay_way bigint(20);
  962. alter table wx_bill_property_deposit_61 modify column pay_way bigint(20);
  963. alter table wx_bill_property_deposit_62 modify column pay_way bigint(20);
  964. alter table wx_bill_property_deposit_63 modify column pay_way bigint(20);
  965. alter table wx_bill_property_deposit_64 modify column pay_way bigint(20);
  966. alter table wx_bill_property_deposit_65 modify column pay_way bigint(20);
  967. alter table wx_bill_property_deposit_66 modify column pay_way bigint(20);
  968. alter table wx_bill_property_deposit_67 modify column pay_way bigint(20);
  969. alter table wx_bill_property_deposit_68 modify column pay_way bigint(20);
  970. alter table wx_bill_property_deposit_69 modify column pay_way bigint(20);
  971. alter table wx_bill_property_deposit_70 modify column pay_way bigint(20);
  972. alter table wx_bill_property_deposit_71 modify column pay_way bigint(20);
  973. alter table wx_bill_property_deposit_72 modify column pay_way bigint(20);
  974. alter table wx_bill_property_deposit_73 modify column pay_way bigint(20);
  975. alter table wx_bill_property_deposit_74 modify column pay_way bigint(20);
  976. alter table wx_bill_property_deposit_75 modify column pay_way bigint(20);
  977. alter table wx_bill_property_deposit_76 modify column pay_way bigint(20);
  978. alter table wx_bill_property_deposit_77 modify column pay_way bigint(20);
  979. alter table wx_bill_property_deposit_78 modify column pay_way bigint(20);
  980. alter table wx_bill_property_deposit_79 modify column pay_way bigint(20);
  981. alter table wx_bill_property_deposit_80 modify column pay_way bigint(20);
  982. alter table wx_bill_property_deposit_81 modify column pay_way bigint(20);
  983. alter table wx_bill_property_deposit_82 modify column pay_way bigint(20);
  984. alter table wx_bill_property_deposit_83 modify column pay_way bigint(20);
  985. alter table wx_bill_property_deposit_84 modify column pay_way bigint(20);
  986. alter table wx_bill_property_deposit_85 modify column pay_way bigint(20);
  987. alter table wx_bill_property_deposit_86 modify column pay_way bigint(20);
  988. alter table wx_bill_property_deposit_87 modify column pay_way bigint(20);
  989. alter table wx_bill_property_deposit_88 modify column pay_way bigint(20);
  990. alter table wx_bill_property_deposit_89 modify column pay_way bigint(20);
  991. alter table wx_bill_property_deposit_90 modify column pay_way bigint(20);
  992. alter table wx_bill_property_deposit_91 modify column pay_way bigint(20);
  993. alter table wx_bill_property_deposit_92 modify column pay_way bigint(20);
  994. alter table wx_bill_property_deposit_93 modify column pay_way bigint(20);
  995. alter table wx_bill_property_deposit_94 modify column pay_way bigint(20);
  996. alter table wx_bill_property_deposit_95 modify column pay_way bigint(20);
  997. alter table wx_bill_property_deposit_96 modify column pay_way bigint(20);
  998. alter table wx_bill_property_deposit_97 modify column pay_way bigint(20);
  999. alter table wx_bill_property_deposit_98 modify column pay_way bigint(20);
  1000. alter table wx_bill_property_deposit_99 modify column pay_way bigint(20);
  1001. alter table wx_bill_daily_0 modify column pay_way bigint(20);
  1002. alter table wx_bill_daily_1 modify column pay_way bigint(20);
  1003. alter table wx_bill_daily_2 modify column pay_way bigint(20);
  1004. alter table wx_bill_daily_3 modify column pay_way bigint(20);
  1005. alter table wx_bill_daily_4 modify column pay_way bigint(20);
  1006. alter table wx_bill_daily_5 modify column pay_way bigint(20);
  1007. alter table wx_bill_daily_6 modify column pay_way bigint(20);
  1008. alter table wx_bill_daily_7 modify column pay_way bigint(20);
  1009. alter table wx_bill_daily_8 modify column pay_way bigint(20);
  1010. alter table wx_bill_daily_9 modify column pay_way bigint(20);
  1011. alter table wx_bill_daily_10 modify column pay_way bigint(20);
  1012. alter table wx_bill_daily_11 modify column pay_way bigint(20);
  1013. alter table wx_bill_daily_12 modify column pay_way bigint(20);
  1014. alter table wx_bill_daily_13 modify column pay_way bigint(20);
  1015. alter table wx_bill_daily_14 modify column pay_way bigint(20);
  1016. alter table wx_bill_daily_15 modify column pay_way bigint(20);
  1017. alter table wx_bill_daily_16 modify column pay_way bigint(20);
  1018. alter table wx_bill_daily_17 modify column pay_way bigint(20);
  1019. alter table wx_bill_daily_18 modify column pay_way bigint(20);
  1020. alter table wx_bill_daily_19 modify column pay_way bigint(20);
  1021. alter table wx_bill_daily_20 modify column pay_way bigint(20);
  1022. alter table wx_bill_daily_21 modify column pay_way bigint(20);
  1023. alter table wx_bill_daily_22 modify column pay_way bigint(20);
  1024. alter table wx_bill_daily_23 modify column pay_way bigint(20);
  1025. alter table wx_bill_daily_24 modify column pay_way bigint(20);
  1026. alter table wx_bill_daily_25 modify column pay_way bigint(20);
  1027. alter table wx_bill_daily_26 modify column pay_way bigint(20);
  1028. alter table wx_bill_daily_27 modify column pay_way bigint(20);
  1029. alter table wx_bill_daily_28 modify column pay_way bigint(20);
  1030. alter table wx_bill_daily_29 modify column pay_way bigint(20);
  1031. alter table wx_bill_daily_30 modify column pay_way bigint(20);
  1032. alter table wx_bill_daily_31 modify column pay_way bigint(20);
  1033. alter table wx_bill_daily_32 modify column pay_way bigint(20);
  1034. alter table wx_bill_daily_33 modify column pay_way bigint(20);
  1035. alter table wx_bill_daily_34 modify column pay_way bigint(20);
  1036. alter table wx_bill_daily_35 modify column pay_way bigint(20);
  1037. alter table wx_bill_daily_36 modify column pay_way bigint(20);
  1038. alter table wx_bill_daily_37 modify column pay_way bigint(20);
  1039. alter table wx_bill_daily_38 modify column pay_way bigint(20);
  1040. alter table wx_bill_daily_39 modify column pay_way bigint(20);
  1041. alter table wx_bill_daily_40 modify column pay_way bigint(20);
  1042. alter table wx_bill_daily_41 modify column pay_way bigint(20);
  1043. alter table wx_bill_daily_42 modify column pay_way bigint(20);
  1044. alter table wx_bill_daily_43 modify column pay_way bigint(20);
  1045. alter table wx_bill_daily_44 modify column pay_way bigint(20);
  1046. alter table wx_bill_daily_45 modify column pay_way bigint(20);
  1047. alter table wx_bill_daily_46 modify column pay_way bigint(20);
  1048. alter table wx_bill_daily_47 modify column pay_way bigint(20);
  1049. alter table wx_bill_daily_48 modify column pay_way bigint(20);
  1050. alter table wx_bill_daily_49 modify column pay_way bigint(20);
  1051. alter table wx_bill_daily_50 modify column pay_way bigint(20);
  1052. alter table wx_bill_daily_51 modify column pay_way bigint(20);
  1053. alter table wx_bill_daily_52 modify column pay_way bigint(20);
  1054. alter table wx_bill_daily_53 modify column pay_way bigint(20);
  1055. alter table wx_bill_daily_54 modify column pay_way bigint(20);
  1056. alter table wx_bill_daily_55 modify column pay_way bigint(20);
  1057. alter table wx_bill_daily_56 modify column pay_way bigint(20);
  1058. alter table wx_bill_daily_57 modify column pay_way bigint(20);
  1059. alter table wx_bill_daily_58 modify column pay_way bigint(20);
  1060. alter table wx_bill_daily_59 modify column pay_way bigint(20);
  1061. alter table wx_bill_daily_60 modify column pay_way bigint(20);
  1062. alter table wx_bill_daily_61 modify column pay_way bigint(20);
  1063. alter table wx_bill_daily_62 modify column pay_way bigint(20);
  1064. alter table wx_bill_daily_63 modify column pay_way bigint(20);
  1065. alter table wx_bill_daily_64 modify column pay_way bigint(20);
  1066. alter table wx_bill_daily_65 modify column pay_way bigint(20);
  1067. alter table wx_bill_daily_66 modify column pay_way bigint(20);
  1068. alter table wx_bill_daily_67 modify column pay_way bigint(20);
  1069. alter table wx_bill_daily_68 modify column pay_way bigint(20);
  1070. alter table wx_bill_daily_69 modify column pay_way bigint(20);
  1071. alter table wx_bill_daily_70 modify column pay_way bigint(20);
  1072. alter table wx_bill_daily_71 modify column pay_way bigint(20);
  1073. alter table wx_bill_daily_72 modify column pay_way bigint(20);
  1074. alter table wx_bill_daily_73 modify column pay_way bigint(20);
  1075. alter table wx_bill_daily_74 modify column pay_way bigint(20);
  1076. alter table wx_bill_daily_75 modify column pay_way bigint(20);
  1077. alter table wx_bill_daily_76 modify column pay_way bigint(20);
  1078. alter table wx_bill_daily_77 modify column pay_way bigint(20);
  1079. alter table wx_bill_daily_78 modify column pay_way bigint(20);
  1080. alter table wx_bill_daily_79 modify column pay_way bigint(20);
  1081. alter table wx_bill_daily_80 modify column pay_way bigint(20);
  1082. alter table wx_bill_daily_81 modify column pay_way bigint(20);
  1083. alter table wx_bill_daily_82 modify column pay_way bigint(20);
  1084. alter table wx_bill_daily_83 modify column pay_way bigint(20);
  1085. alter table wx_bill_daily_84 modify column pay_way bigint(20);
  1086. alter table wx_bill_daily_85 modify column pay_way bigint(20);
  1087. alter table wx_bill_daily_86 modify column pay_way bigint(20);
  1088. alter table wx_bill_daily_87 modify column pay_way bigint(20);
  1089. alter table wx_bill_daily_88 modify column pay_way bigint(20);
  1090. alter table wx_bill_daily_89 modify column pay_way bigint(20);
  1091. alter table wx_bill_daily_90 modify column pay_way bigint(20);
  1092. alter table wx_bill_daily_91 modify column pay_way bigint(20);
  1093. alter table wx_bill_daily_92 modify column pay_way bigint(20);
  1094. alter table wx_bill_daily_93 modify column pay_way bigint(20);
  1095. alter table wx_bill_daily_94 modify column pay_way bigint(20);
  1096. alter table wx_bill_daily_95 modify column pay_way bigint(20);
  1097. alter table wx_bill_daily_96 modify column pay_way bigint(20);
  1098. alter table wx_bill_daily_97 modify column pay_way bigint(20);
  1099. alter table wx_bill_daily_98 modify column pay_way bigint(20);
  1100. alter table wx_bill_daily_99 modify column pay_way bigint(20);
  1101. alter table wx_bill_other_0 modify column pay_way bigint(20);
  1102. alter table wx_bill_other_1 modify column pay_way bigint(20);
  1103. alter table wx_bill_other_2 modify column pay_way bigint(20);
  1104. alter table wx_bill_other_3 modify column pay_way bigint(20);
  1105. alter table wx_bill_other_4 modify column pay_way bigint(20);
  1106. alter table wx_bill_other_5 modify column pay_way bigint(20);
  1107. alter table wx_bill_other_6 modify column pay_way bigint(20);
  1108. alter table wx_bill_other_7 modify column pay_way bigint(20);
  1109. alter table wx_bill_other_8 modify column pay_way bigint(20);
  1110. alter table wx_bill_other_9 modify column pay_way bigint(20);
  1111. alter table wx_bill_other_10 modify column pay_way bigint(20);
  1112. alter table wx_bill_other_11 modify column pay_way bigint(20);
  1113. alter table wx_bill_other_12 modify column pay_way bigint(20);
  1114. alter table wx_bill_other_13 modify column pay_way bigint(20);
  1115. alter table wx_bill_other_14 modify column pay_way bigint(20);
  1116. alter table wx_bill_other_15 modify column pay_way bigint(20);
  1117. alter table wx_bill_other_16 modify column pay_way bigint(20);
  1118. alter table wx_bill_other_17 modify column pay_way bigint(20);
  1119. alter table wx_bill_other_18 modify column pay_way bigint(20);
  1120. alter table wx_bill_other_19 modify column pay_way bigint(20);
  1121. alter table wx_bill_other_20 modify column pay_way bigint(20);
  1122. alter table wx_bill_other_21 modify column pay_way bigint(20);
  1123. alter table wx_bill_other_22 modify column pay_way bigint(20);
  1124. alter table wx_bill_other_23 modify column pay_way bigint(20);
  1125. alter table wx_bill_other_24 modify column pay_way bigint(20);
  1126. alter table wx_bill_other_25 modify column pay_way bigint(20);
  1127. alter table wx_bill_other_26 modify column pay_way bigint(20);
  1128. alter table wx_bill_other_27 modify column pay_way bigint(20);
  1129. alter table wx_bill_other_28 modify column pay_way bigint(20);
  1130. alter table wx_bill_other_29 modify column pay_way bigint(20);
  1131. alter table wx_bill_other_30 modify column pay_way bigint(20);
  1132. alter table wx_bill_other_31 modify column pay_way bigint(20);
  1133. alter table wx_bill_other_32 modify column pay_way bigint(20);
  1134. alter table wx_bill_other_33 modify column pay_way bigint(20);
  1135. alter table wx_bill_other_34 modify column pay_way bigint(20);
  1136. alter table wx_bill_other_35 modify column pay_way bigint(20);
  1137. alter table wx_bill_other_36 modify column pay_way bigint(20);
  1138. alter table wx_bill_other_37 modify column pay_way bigint(20);
  1139. alter table wx_bill_other_38 modify column pay_way bigint(20);
  1140. alter table wx_bill_other_39 modify column pay_way bigint(20);
  1141. alter table wx_bill_other_40 modify column pay_way bigint(20);
  1142. alter table wx_bill_other_41 modify column pay_way bigint(20);
  1143. alter table wx_bill_other_42 modify column pay_way bigint(20);
  1144. alter table wx_bill_other_43 modify column pay_way bigint(20);
  1145. alter table wx_bill_other_44 modify column pay_way bigint(20);
  1146. alter table wx_bill_other_45 modify column pay_way bigint(20);
  1147. alter table wx_bill_other_46 modify column pay_way bigint(20);
  1148. alter table wx_bill_other_47 modify column pay_way bigint(20);
  1149. alter table wx_bill_other_48 modify column pay_way bigint(20);
  1150. alter table wx_bill_other_49 modify column pay_way bigint(20);
  1151. alter table wx_bill_other_50 modify column pay_way bigint(20);
  1152. alter table wx_bill_other_51 modify column pay_way bigint(20);
  1153. alter table wx_bill_other_52 modify column pay_way bigint(20);
  1154. alter table wx_bill_other_53 modify column pay_way bigint(20);
  1155. alter table wx_bill_other_54 modify column pay_way bigint(20);
  1156. alter table wx_bill_other_55 modify column pay_way bigint(20);
  1157. alter table wx_bill_other_56 modify column pay_way bigint(20);
  1158. alter table wx_bill_other_57 modify column pay_way bigint(20);
  1159. alter table wx_bill_other_58 modify column pay_way bigint(20);
  1160. alter table wx_bill_other_59 modify column pay_way bigint(20);
  1161. alter table wx_bill_other_60 modify column pay_way bigint(20);
  1162. alter table wx_bill_other_61 modify column pay_way bigint(20);
  1163. alter table wx_bill_other_62 modify column pay_way bigint(20);
  1164. alter table wx_bill_other_63 modify column pay_way bigint(20);
  1165. alter table wx_bill_other_64 modify column pay_way bigint(20);
  1166. alter table wx_bill_other_65 modify column pay_way bigint(20);
  1167. alter table wx_bill_other_66 modify column pay_way bigint(20);
  1168. alter table wx_bill_other_67 modify column pay_way bigint(20);
  1169. alter table wx_bill_other_68 modify column pay_way bigint(20);
  1170. alter table wx_bill_other_69 modify column pay_way bigint(20);
  1171. alter table wx_bill_other_70 modify column pay_way bigint(20);
  1172. alter table wx_bill_other_71 modify column pay_way bigint(20);
  1173. alter table wx_bill_other_72 modify column pay_way bigint(20);
  1174. alter table wx_bill_other_73 modify column pay_way bigint(20);
  1175. alter table wx_bill_other_74 modify column pay_way bigint(20);
  1176. alter table wx_bill_other_75 modify column pay_way bigint(20);
  1177. alter table wx_bill_other_76 modify column pay_way bigint(20);
  1178. alter table wx_bill_other_77 modify column pay_way bigint(20);
  1179. alter table wx_bill_other_78 modify column pay_way bigint(20);
  1180. alter table wx_bill_other_79 modify column pay_way bigint(20);
  1181. alter table wx_bill_other_80 modify column pay_way bigint(20);
  1182. alter table wx_bill_other_81 modify column pay_way bigint(20);
  1183. alter table wx_bill_other_82 modify column pay_way bigint(20);
  1184. alter table wx_bill_other_83 modify column pay_way bigint(20);
  1185. alter table wx_bill_other_84 modify column pay_way bigint(20);
  1186. alter table wx_bill_other_85 modify column pay_way bigint(20);
  1187. alter table wx_bill_other_86 modify column pay_way bigint(20);
  1188. alter table wx_bill_other_87 modify column pay_way bigint(20);
  1189. alter table wx_bill_other_88 modify column pay_way bigint(20);
  1190. alter table wx_bill_other_89 modify column pay_way bigint(20);
  1191. alter table wx_bill_other_90 modify column pay_way bigint(20);
  1192. alter table wx_bill_other_91 modify column pay_way bigint(20);
  1193. alter table wx_bill_other_92 modify column pay_way bigint(20);
  1194. alter table wx_bill_other_93 modify column pay_way bigint(20);
  1195. alter table wx_bill_other_94 modify column pay_way bigint(20);
  1196. alter table wx_bill_other_95 modify column pay_way bigint(20);
  1197. alter table wx_bill_other_96 modify column pay_way bigint(20);
  1198. alter table wx_bill_other_97 modify column pay_way bigint(20);
  1199. alter table wx_bill_other_98 modify column pay_way bigint(20);
  1200. alter table wx_bill_other_99 modify column pay_way bigint(20);
  1201. alter table wx_bill_other_deposit_0 modify column pay_way bigint(20);
  1202. alter table wx_bill_other_deposit_1 modify column pay_way bigint(20);
  1203. alter table wx_bill_other_deposit_2 modify column pay_way bigint(20);
  1204. alter table wx_bill_other_deposit_3 modify column pay_way bigint(20);
  1205. alter table wx_bill_other_deposit_4 modify column pay_way bigint(20);
  1206. alter table wx_bill_other_deposit_5 modify column pay_way bigint(20);
  1207. alter table wx_bill_other_deposit_6 modify column pay_way bigint(20);
  1208. alter table wx_bill_other_deposit_7 modify column pay_way bigint(20);
  1209. alter table wx_bill_other_deposit_8 modify column pay_way bigint(20);
  1210. alter table wx_bill_other_deposit_9 modify column pay_way bigint(20);
  1211. alter table wx_bill_other_deposit_10 modify column pay_way bigint(20);
  1212. alter table wx_bill_other_deposit_11 modify column pay_way bigint(20);
  1213. alter table wx_bill_other_deposit_12 modify column pay_way bigint(20);
  1214. alter table wx_bill_other_deposit_13 modify column pay_way bigint(20);
  1215. alter table wx_bill_other_deposit_14 modify column pay_way bigint(20);
  1216. alter table wx_bill_other_deposit_15 modify column pay_way bigint(20);
  1217. alter table wx_bill_other_deposit_16 modify column pay_way bigint(20);
  1218. alter table wx_bill_other_deposit_17 modify column pay_way bigint(20);
  1219. alter table wx_bill_other_deposit_18 modify column pay_way bigint(20);
  1220. alter table wx_bill_other_deposit_19 modify column pay_way bigint(20);
  1221. alter table wx_bill_other_deposit_20 modify column pay_way bigint(20);
  1222. alter table wx_bill_other_deposit_21 modify column pay_way bigint(20);
  1223. alter table wx_bill_other_deposit_22 modify column pay_way bigint(20);
  1224. alter table wx_bill_other_deposit_23 modify column pay_way bigint(20);
  1225. alter table wx_bill_other_deposit_24 modify column pay_way bigint(20);
  1226. alter table wx_bill_other_deposit_25 modify column pay_way bigint(20);
  1227. alter table wx_bill_other_deposit_26 modify column pay_way bigint(20);
  1228. alter table wx_bill_other_deposit_27 modify column pay_way bigint(20);
  1229. alter table wx_bill_other_deposit_28 modify column pay_way bigint(20);
  1230. alter table wx_bill_other_deposit_29 modify column pay_way bigint(20);
  1231. alter table wx_bill_other_deposit_30 modify column pay_way bigint(20);
  1232. alter table wx_bill_other_deposit_31 modify column pay_way bigint(20);
  1233. alter table wx_bill_other_deposit_32 modify column pay_way bigint(20);
  1234. alter table wx_bill_other_deposit_33 modify column pay_way bigint(20);
  1235. alter table wx_bill_other_deposit_34 modify column pay_way bigint(20);
  1236. alter table wx_bill_other_deposit_35 modify column pay_way bigint(20);
  1237. alter table wx_bill_other_deposit_36 modify column pay_way bigint(20);
  1238. alter table wx_bill_other_deposit_37 modify column pay_way bigint(20);
  1239. alter table wx_bill_other_deposit_38 modify column pay_way bigint(20);
  1240. alter table wx_bill_other_deposit_39 modify column pay_way bigint(20);
  1241. alter table wx_bill_other_deposit_40 modify column pay_way bigint(20);
  1242. alter table wx_bill_other_deposit_41 modify column pay_way bigint(20);
  1243. alter table wx_bill_other_deposit_42 modify column pay_way bigint(20);
  1244. alter table wx_bill_other_deposit_43 modify column pay_way bigint(20);
  1245. alter table wx_bill_other_deposit_44 modify column pay_way bigint(20);
  1246. alter table wx_bill_other_deposit_45 modify column pay_way bigint(20);
  1247. alter table wx_bill_other_deposit_46 modify column pay_way bigint(20);
  1248. alter table wx_bill_other_deposit_47 modify column pay_way bigint(20);
  1249. alter table wx_bill_other_deposit_48 modify column pay_way bigint(20);
  1250. alter table wx_bill_other_deposit_49 modify column pay_way bigint(20);
  1251. alter table wx_bill_other_deposit_50 modify column pay_way bigint(20);
  1252. alter table wx_bill_other_deposit_51 modify column pay_way bigint(20);
  1253. alter table wx_bill_other_deposit_52 modify column pay_way bigint(20);
  1254. alter table wx_bill_other_deposit_53 modify column pay_way bigint(20);
  1255. alter table wx_bill_other_deposit_54 modify column pay_way bigint(20);
  1256. alter table wx_bill_other_deposit_55 modify column pay_way bigint(20);
  1257. alter table wx_bill_other_deposit_56 modify column pay_way bigint(20);
  1258. alter table wx_bill_other_deposit_57 modify column pay_way bigint(20);
  1259. alter table wx_bill_other_deposit_58 modify column pay_way bigint(20);
  1260. alter table wx_bill_other_deposit_59 modify column pay_way bigint(20);
  1261. alter table wx_bill_other_deposit_60 modify column pay_way bigint(20);
  1262. alter table wx_bill_other_deposit_61 modify column pay_way bigint(20);
  1263. alter table wx_bill_other_deposit_62 modify column pay_way bigint(20);
  1264. alter table wx_bill_other_deposit_63 modify column pay_way bigint(20);
  1265. alter table wx_bill_other_deposit_64 modify column pay_way bigint(20);
  1266. alter table wx_bill_other_deposit_65 modify column pay_way bigint(20);
  1267. alter table wx_bill_other_deposit_66 modify column pay_way bigint(20);
  1268. alter table wx_bill_other_deposit_67 modify column pay_way bigint(20);
  1269. alter table wx_bill_other_deposit_68 modify column pay_way bigint(20);
  1270. alter table wx_bill_other_deposit_69 modify column pay_way bigint(20);
  1271. alter table wx_bill_other_deposit_70 modify column pay_way bigint(20);
  1272. alter table wx_bill_other_deposit_71 modify column pay_way bigint(20);
  1273. alter table wx_bill_other_deposit_72 modify column pay_way bigint(20);
  1274. alter table wx_bill_other_deposit_73 modify column pay_way bigint(20);
  1275. alter table wx_bill_other_deposit_74 modify column pay_way bigint(20);
  1276. alter table wx_bill_other_deposit_75 modify column pay_way bigint(20);
  1277. alter table wx_bill_other_deposit_76 modify column pay_way bigint(20);
  1278. alter table wx_bill_other_deposit_77 modify column pay_way bigint(20);
  1279. alter table wx_bill_other_deposit_78 modify column pay_way bigint(20);
  1280. alter table wx_bill_other_deposit_79 modify column pay_way bigint(20);
  1281. alter table wx_bill_other_deposit_80 modify column pay_way bigint(20);
  1282. alter table wx_bill_other_deposit_81 modify column pay_way bigint(20);
  1283. alter table wx_bill_other_deposit_82 modify column pay_way bigint(20);
  1284. alter table wx_bill_other_deposit_83 modify column pay_way bigint(20);
  1285. alter table wx_bill_other_deposit_84 modify column pay_way bigint(20);
  1286. alter table wx_bill_other_deposit_85 modify column pay_way bigint(20);
  1287. alter table wx_bill_other_deposit_86 modify column pay_way bigint(20);
  1288. alter table wx_bill_other_deposit_87 modify column pay_way bigint(20);
  1289. alter table wx_bill_other_deposit_88 modify column pay_way bigint(20);
  1290. alter table wx_bill_other_deposit_89 modify column pay_way bigint(20);
  1291. alter table wx_bill_other_deposit_90 modify column pay_way bigint(20);
  1292. alter table wx_bill_other_deposit_91 modify column pay_way bigint(20);
  1293. alter table wx_bill_other_deposit_92 modify column pay_way bigint(20);
  1294. alter table wx_bill_other_deposit_93 modify column pay_way bigint(20);
  1295. alter table wx_bill_other_deposit_94 modify column pay_way bigint(20);
  1296. alter table wx_bill_other_deposit_95 modify column pay_way bigint(20);
  1297. alter table wx_bill_other_deposit_96 modify column pay_way bigint(20);
  1298. alter table wx_bill_other_deposit_97 modify column pay_way bigint(20);
  1299. alter table wx_bill_other_deposit_98 modify column pay_way bigint(20);
  1300. alter table wx_bill_other_deposit_99 modify column pay_way bigint(20);
  1301. CREATE TABLE `wx_bill_pay_way` (
  1302. `id` bigint(20) NOT NULL COMMENT '主键ID',
  1303. `tenant_id` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '租户ID',
  1304. `parent_tenant_id` varchar(5) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '父租户ID',
  1305. `create_time` timestamp NULL DEFAULT NULL,
  1306. `update_time` timestamp NULL DEFAULT NULL,
  1307. `is_del` int(1) NOT NULL DEFAULT '0',
  1308. `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '表名称',
  1309. `is_system` int(1) NOT NULL DEFAULT '0' COMMENT '是否系统默认',
  1310. PRIMARY KEY (`id`),
  1311. UNIQUE KEY `id_UNIQUE` (`id`)
  1312. ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC COMMENT='能耗表';
  1313. create table wx_bill_pay_way_0 like wx_bill_pay_way;
  1314. create table wx_bill_pay_way_1 like wx_bill_pay_way;
  1315. create table wx_bill_pay_way_2 like wx_bill_pay_way;
  1316. create table wx_bill_pay_way_3 like wx_bill_pay_way;
  1317. create table wx_bill_pay_way_4 like wx_bill_pay_way;
  1318. create table wx_bill_pay_way_5 like wx_bill_pay_way;
  1319. create table wx_bill_pay_way_6 like wx_bill_pay_way;
  1320. create table wx_bill_pay_way_7 like wx_bill_pay_way;
  1321. create table wx_bill_pay_way_8 like wx_bill_pay_way;
  1322. create table wx_bill_pay_way_9 like wx_bill_pay_way;
  1323. create table wx_bill_pay_way_10 like wx_bill_pay_way;
  1324. create table wx_bill_pay_way_11 like wx_bill_pay_way;
  1325. create table wx_bill_pay_way_12 like wx_bill_pay_way;
  1326. create table wx_bill_pay_way_13 like wx_bill_pay_way;
  1327. create table wx_bill_pay_way_14 like wx_bill_pay_way;
  1328. create table wx_bill_pay_way_15 like wx_bill_pay_way;
  1329. create table wx_bill_pay_way_16 like wx_bill_pay_way;
  1330. create table wx_bill_pay_way_17 like wx_bill_pay_way;
  1331. create table wx_bill_pay_way_18 like wx_bill_pay_way;
  1332. create table wx_bill_pay_way_19 like wx_bill_pay_way;
  1333. create table wx_bill_pay_way_20 like wx_bill_pay_way;
  1334. create table wx_bill_pay_way_21 like wx_bill_pay_way;
  1335. create table wx_bill_pay_way_22 like wx_bill_pay_way;
  1336. create table wx_bill_pay_way_23 like wx_bill_pay_way;
  1337. create table wx_bill_pay_way_24 like wx_bill_pay_way;
  1338. create table wx_bill_pay_way_25 like wx_bill_pay_way;
  1339. create table wx_bill_pay_way_26 like wx_bill_pay_way;
  1340. create table wx_bill_pay_way_27 like wx_bill_pay_way;
  1341. create table wx_bill_pay_way_28 like wx_bill_pay_way;
  1342. create table wx_bill_pay_way_29 like wx_bill_pay_way;
  1343. create table wx_bill_pay_way_30 like wx_bill_pay_way;
  1344. create table wx_bill_pay_way_31 like wx_bill_pay_way;
  1345. create table wx_bill_pay_way_32 like wx_bill_pay_way;
  1346. create table wx_bill_pay_way_33 like wx_bill_pay_way;
  1347. create table wx_bill_pay_way_34 like wx_bill_pay_way;
  1348. create table wx_bill_pay_way_35 like wx_bill_pay_way;
  1349. create table wx_bill_pay_way_36 like wx_bill_pay_way;
  1350. create table wx_bill_pay_way_37 like wx_bill_pay_way;
  1351. create table wx_bill_pay_way_38 like wx_bill_pay_way;
  1352. create table wx_bill_pay_way_39 like wx_bill_pay_way;
  1353. create table wx_bill_pay_way_40 like wx_bill_pay_way;
  1354. create table wx_bill_pay_way_41 like wx_bill_pay_way;
  1355. create table wx_bill_pay_way_42 like wx_bill_pay_way;
  1356. create table wx_bill_pay_way_43 like wx_bill_pay_way;
  1357. create table wx_bill_pay_way_44 like wx_bill_pay_way;
  1358. create table wx_bill_pay_way_45 like wx_bill_pay_way;
  1359. create table wx_bill_pay_way_46 like wx_bill_pay_way;
  1360. create table wx_bill_pay_way_47 like wx_bill_pay_way;
  1361. create table wx_bill_pay_way_48 like wx_bill_pay_way;
  1362. create table wx_bill_pay_way_49 like wx_bill_pay_way;
  1363. create table wx_bill_pay_way_50 like wx_bill_pay_way;
  1364. create table wx_bill_pay_way_51 like wx_bill_pay_way;
  1365. create table wx_bill_pay_way_52 like wx_bill_pay_way;
  1366. create table wx_bill_pay_way_53 like wx_bill_pay_way;
  1367. create table wx_bill_pay_way_54 like wx_bill_pay_way;
  1368. create table wx_bill_pay_way_55 like wx_bill_pay_way;
  1369. create table wx_bill_pay_way_56 like wx_bill_pay_way;
  1370. create table wx_bill_pay_way_57 like wx_bill_pay_way;
  1371. create table wx_bill_pay_way_58 like wx_bill_pay_way;
  1372. create table wx_bill_pay_way_59 like wx_bill_pay_way;
  1373. create table wx_bill_pay_way_60 like wx_bill_pay_way;
  1374. create table wx_bill_pay_way_61 like wx_bill_pay_way;
  1375. create table wx_bill_pay_way_62 like wx_bill_pay_way;
  1376. create table wx_bill_pay_way_63 like wx_bill_pay_way;
  1377. create table wx_bill_pay_way_64 like wx_bill_pay_way;
  1378. create table wx_bill_pay_way_65 like wx_bill_pay_way;
  1379. create table wx_bill_pay_way_66 like wx_bill_pay_way;
  1380. create table wx_bill_pay_way_67 like wx_bill_pay_way;
  1381. create table wx_bill_pay_way_68 like wx_bill_pay_way;
  1382. create table wx_bill_pay_way_69 like wx_bill_pay_way;
  1383. create table wx_bill_pay_way_70 like wx_bill_pay_way;
  1384. create table wx_bill_pay_way_71 like wx_bill_pay_way;
  1385. create table wx_bill_pay_way_72 like wx_bill_pay_way;
  1386. create table wx_bill_pay_way_73 like wx_bill_pay_way;
  1387. create table wx_bill_pay_way_74 like wx_bill_pay_way;
  1388. create table wx_bill_pay_way_75 like wx_bill_pay_way;
  1389. create table wx_bill_pay_way_76 like wx_bill_pay_way;
  1390. create table wx_bill_pay_way_77 like wx_bill_pay_way;
  1391. create table wx_bill_pay_way_78 like wx_bill_pay_way;
  1392. create table wx_bill_pay_way_79 like wx_bill_pay_way;
  1393. create table wx_bill_pay_way_80 like wx_bill_pay_way;
  1394. create table wx_bill_pay_way_81 like wx_bill_pay_way;
  1395. create table wx_bill_pay_way_82 like wx_bill_pay_way;
  1396. create table wx_bill_pay_way_83 like wx_bill_pay_way;
  1397. create table wx_bill_pay_way_84 like wx_bill_pay_way;
  1398. create table wx_bill_pay_way_85 like wx_bill_pay_way;
  1399. create table wx_bill_pay_way_86 like wx_bill_pay_way;
  1400. create table wx_bill_pay_way_87 like wx_bill_pay_way;
  1401. create table wx_bill_pay_way_88 like wx_bill_pay_way;
  1402. create table wx_bill_pay_way_89 like wx_bill_pay_way;
  1403. create table wx_bill_pay_way_90 like wx_bill_pay_way;
  1404. create table wx_bill_pay_way_91 like wx_bill_pay_way;
  1405. create table wx_bill_pay_way_92 like wx_bill_pay_way;
  1406. create table wx_bill_pay_way_93 like wx_bill_pay_way;
  1407. create table wx_bill_pay_way_94 like wx_bill_pay_way;
  1408. create table wx_bill_pay_way_95 like wx_bill_pay_way;
  1409. create table wx_bill_pay_way_96 like wx_bill_pay_way;
  1410. create table wx_bill_pay_way_97 like wx_bill_pay_way;
  1411. create table wx_bill_pay_way_98 like wx_bill_pay_way;
  1412. create table wx_bill_pay_way_99 like wx_bill_pay_way;
  1413. drop table wx_bill_pay_way;
  1414. INSERT INTO wx_bill_pay_way_3 (id,tenant_id,parent_tenant_id,create_time,update_time,is_del,NAME,is_system)
  1415. VALUES (1,'1003',NULL,NOW(),NOW(),0,'商户小程序',1), (2,'1003',NULL,NOW(),NOW(),0,'系统自动结清',1);
  1416. INSERT INTO wx_bill_pay_way_8 (id,tenant_id,parent_tenant_id,create_time,update_time,is_del,NAME,is_system)
  1417. VALUES (1,'1008','1028',NOW(),NOW(),0,'商户小程序',1), (2,'1008','1028',NOW(),NOW(),0,'系统自动结清',1);
  1418. INSERT INTO wx_bill_pay_way_9 (id,tenant_id,parent_tenant_id,create_time,update_time,is_del,NAME,is_system)
  1419. VALUES (1,'1009',NULL,NOW(),NOW(),0,'商户小程序',1), (2,'1009',NULL,NOW(),NOW(),0,'系统自动结清',1);
  1420. INSERT INTO wx_bill_pay_way_10 (id,tenant_id,parent_tenant_id,create_time,update_time,is_del,NAME,is_system)
  1421. VALUES (1,'1010',NULL,NOW(),NOW(),0,'商户小程序',1), (2,'1010',NULL,NOW(),NOW(),0,'系统自动结清',1);
  1422. INSERT INTO wx_bill_pay_way_12 (id,tenant_id,parent_tenant_id,create_time,update_time,is_del,NAME,is_system)
  1423. VALUES (1,'1012',NULL,NOW(),NOW(),0,'商户小程序',1), (2,'1012',NULL,NOW(),NOW(),0,'系统自动结清',1);
  1424. INSERT INTO wx_bill_pay_way_13 (id,tenant_id,parent_tenant_id,create_time,update_time,is_del,NAME,is_system)
  1425. VALUES (1,'1013',NULL,NOW(),NOW(),0,'商户小程序',1), (2,'1013',NULL,NOW(),NOW(),0,'系统自动结清',1);
  1426. INSERT INTO wx_bill_pay_way_19 (id,tenant_id,parent_tenant_id,create_time,update_time,is_del,NAME,is_system)
  1427. VALUES (1,'1019',NULL,NOW(),NOW(),0,'商户小程序',1), (2,'1019',NULL,NOW(),NOW(),0,'系统自动结清',1);
  1428. INSERT INTO wx_bill_pay_way_20 (id,tenant_id,parent_tenant_id,create_time,update_time,is_del,NAME,is_system)
  1429. VALUES (1,'1020','1028',NOW(),NOW(),0,'商户小程序',1), (2,'1020','1028',NOW(),NOW(),0,'系统自动结清',1);
  1430. INSERT INTO wx_bill_pay_way_22 (id,tenant_id,parent_tenant_id,create_time,update_time,is_del,NAME,is_system)
  1431. VALUES (1,'1022',NULL,NOW(),NOW(),0,'商户小程序',1), (2,'1022',NULL,NOW(),NOW(),0,'系统自动结清',1);
  1432. INSERT INTO wx_bill_pay_way_24 (id,tenant_id,parent_tenant_id,create_time,update_time,is_del,NAME,is_system)
  1433. VALUES (1,'1024',NULL,NOW(),NOW(),0,'商户小程序',1), (2,'1024',NULL,NOW(),NOW(),0,'系统自动结清',1);
  1434. INSERT INTO wx_bill_pay_way_42 (id,tenant_id,parent_tenant_id,create_time,update_time,is_del,NAME,is_system)
  1435. VALUES (1,'1042',NULL,NOW(),NOW(),0,'商户小程序',1), (2,'1042',NULL,NOW(),NOW(),0,'系统自动结清',1);
  1436. INSERT INTO wx_bill_pay_way_63 (id,tenant_id,parent_tenant_id,create_time,update_time,is_del,NAME,is_system)
  1437. VALUES (1,'1063',NULL,NOW(),NOW(),0,'商户小程序',1), (2,'1063',NULL,NOW(),NOW(),0,'系统自动结清',1);
  1438. INSERT INTO wx_bill_pay_way_95 (id,tenant_id,parent_tenant_id,create_time,update_time,is_del,NAME,is_system)
  1439. VALUES (1,'1095',NULL,NOW(),NOW(),0,'商户小程序',1), (2,'1095',NULL,NOW(),NOW(),0,'系统自动结清',1);
  1440. INSERT INTO wx_bill_pay_way_96 (id,tenant_id,parent_tenant_id,create_time,update_time,is_del,NAME,is_system)
  1441. VALUES (1,'1096',NULL,NOW(),NOW(),0,'商户小程序',1), (2,'1096',NULL,NOW(),NOW(),0,'系统自动结清',1);
  1442. INSERT INTO wx_bill_pay_way_89 (id,tenant_id,parent_tenant_id,create_time,update_time,is_del,NAME,is_system)
  1443. VALUES (1,'789',NULL,NOW(),NOW(),0,'商户小程序',1), (2,'789',NULL,NOW(),NOW(),0,'系统自动结清',1);