-
Notifications
You must be signed in to change notification settings - Fork 3
/
report_xml.sql
10680 lines (10374 loc) · 385 KB
/
report_xml.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 5.1.3
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Mar 28, 2022 at 10:46 AM
-- Server version: 8.0.28
-- PHP Version: 7.4.27
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `report_xml`
--
-- --------------------------------------------------------
--
-- Table structure for table `borrowers_enterprise`
--
CREATE TABLE `borrowers_enterprise` (
`id` int NOT NULL,
`enterprise_id` int NOT NULL,
`loan_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `borrowers_individual`
--
CREATE TABLE `borrowers_individual` (
`id` int NOT NULL,
`borrower_id` int NOT NULL,
`loan_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `collaterals`
--
CREATE TABLE `collaterals` (
`id` int NOT NULL,
`category_id` int NOT NULL,
`name` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`collateral_no` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`date_of_issue` date NOT NULL,
`value` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`other_details` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `collateral_enterprises`
--
CREATE TABLE `collateral_enterprises` (
`id` int NOT NULL,
`enterprise_id` int NOT NULL,
`collateral_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `collateral_individuals`
--
CREATE TABLE `collateral_individuals` (
`id` int NOT NULL,
`owner_id` int NOT NULL,
`collateral_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `depositors_enterprise`
--
CREATE TABLE `depositors_enterprise` (
`id` int NOT NULL,
`deposit_id` int NOT NULL,
`enterprise_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `depositors_individual`
--
CREATE TABLE `depositors_individual` (
`id` int NOT NULL,
`deposit_id` int NOT NULL,
`depositor_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `deposits`
--
CREATE TABLE `deposits` (
`id` int NOT NULL,
`account_no` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`depositor_type_id` int NOT NULL,
`deposit_type_id` int NOT NULL,
`from_date` date NOT NULL,
`to_date` date NOT NULL,
`interest_rate_date` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`opening_balance` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`remaining_balance` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`deposit` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`withdrawal` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`interest_rate` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`economic_sector_id` int NOT NULL,
`economic_branch_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `employees`
--
CREATE TABLE `employees` (
`id` int NOT NULL,
`contact_info` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`education_level_id` int NOT NULL,
`date_of_employment` date NOT NULL,
`field_of_study` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `employee_positions`
--
CREATE TABLE `employee_positions` (
`id` int NOT NULL,
`employee_id` int NOT NULL,
`position_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `enterprise_info`
--
CREATE TABLE `enterprise_info` (
`id` int NOT NULL,
`name_LA` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`name_EN` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`register_no` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`date_of_issue` date NOT NULL,
`registrant` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`enterprise_size_id` int NOT NULL,
`village_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `lao_family_books`
--
CREATE TABLE `lao_family_books` (
`id` int NOT NULL,
`book_no` varchar(1000) NOT NULL,
`book_name` varchar(1000) NOT NULL,
`date_of_issue` date NOT NULL,
`owner_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
-- --------------------------------------------------------
--
-- Table structure for table `lao_id_cards`
--
CREATE TABLE `lao_id_cards` (
`id` int NOT NULL,
`card_no` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`card_name` varchar(1000) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`date_of_issue` date NOT NULL,
`exp_date` date NOT NULL,
`owner_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
-- --------------------------------------------------------
--
-- Table structure for table `loans`
--
CREATE TABLE `loans` (
`id` int NOT NULL,
`from_date` date NOT NULL,
`to_date` date NOT NULL,
`use_of_loan` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`approved_balance` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`remaining_balance` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`allowance_losses` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`interest_rate` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`classification_id` int NOT NULL,
`classification_date` date NOT NULL,
`category_id` int NOT NULL,
`restructured_date` date NOT NULL,
`write_off_date` date NOT NULL,
`borrower_type_id` int NOT NULL,
`economic_sector_id` int NOT NULL,
`economic_branch_id` int NOT NULL,
`borrower_connection_id` int NOT NULL,
`funding_source_id` int NOT NULL,
`funding_org` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `loan_collaterals`
--
CREATE TABLE `loan_collaterals` (
`id` int NOT NULL,
`collateral_id` int NOT NULL,
`loan_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `member_shares`
--
CREATE TABLE `member_shares` (
`id` int NOT NULL,
`member_type_id` int NOT NULL,
`from_date` date NOT NULL,
`to_date` date NOT NULL,
`initial_contribution` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`contribution` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`withdrawal` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`remaining_balance` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `member_shares_enterprises`
--
CREATE TABLE `member_shares_enterprises` (
`id` int NOT NULL,
`member_shares_id` int NOT NULL,
`enterprise_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `member_shares_individuals`
--
CREATE TABLE `member_shares_individuals` (
`id` int NOT NULL,
`member_shares_id` int NOT NULL,
`member_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `mfi_branches_info`
--
CREATE TABLE `mfi_branches_info` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`approved_date` date NOT NULL,
`name_LA` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL,
`name_EN` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL,
`village_id` int NOT NULL,
`address` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL,
`house_unit` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`house_no` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`license_no` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`service_units` int NOT NULL,
`employees` int NOT NULL,
`employees_female` int NOT NULL,
`tel` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`mobile` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`fax` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL,
`whatsapp` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`website` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`other_infos` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`latitude` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`longitude` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `mfi_branch_service_units`
--
CREATE TABLE `mfi_branch_service_units` (
`id` int NOT NULL,
`mfi_branch_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`service_unit_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `mfi_hq_service_units`
--
CREATE TABLE `mfi_hq_service_units` (
`id` int NOT NULL,
`service_unit_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `mfi_info`
--
CREATE TABLE `mfi_info` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`approved_date` date NOT NULL,
`name_LA` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL,
`name_EN` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL,
`village_id` int NOT NULL,
`address` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL,
`house_unit` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`house_no` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`enterprise_id` int NOT NULL,
`license_no` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`branches` int NOT NULL,
`service_units` int NOT NULL,
`employees` int NOT NULL,
`employees_female` int NOT NULL,
`employees_HQ` int NOT NULL,
`employees_female_HQ` int NOT NULL,
`tel` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`mobile` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`fax` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL,
`whatsapp` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`website` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`other_info` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`latitude` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`longitude` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `mfi_service_units_info`
--
CREATE TABLE `mfi_service_units_info` (
`id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`approved_date` date NOT NULL,
`name_LA` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL,
`name_EN` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL,
`village_id` int NOT NULL,
`address` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL,
`house_unit` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`house_no` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`license_no` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`employees` int NOT NULL,
`employees_female` int NOT NULL,
`tel` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`mobile` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`fax` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL,
`whatsapp` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`website` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`other_infos` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`latitude` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`longitude` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `passports`
--
CREATE TABLE `passports` (
`id` int NOT NULL,
`passport_no` varchar(1000) NOT NULL,
`passport_name` varchar(1000) NOT NULL,
`exp_date` date NOT NULL,
`owner_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
-- --------------------------------------------------------
--
-- Table structure for table `personal_info`
--
CREATE TABLE `personal_info` (
`id` int NOT NULL,
`firstname_LA` varchar(1000) NOT NULL,
`lastname_LA` varchar(1000) NOT NULL,
`firstname_EN` varchar(1000) NOT NULL,
`lastname_EN` varchar(1000) NOT NULL,
`dateofbirth` date NOT NULL,
`age` int NOT NULL,
`gender_id` int NOT NULL,
`nationality_id` int NOT NULL,
`marital_status_id` int NOT NULL,
`career_id` int NOT NULL,
`village_id` int NOT NULL,
`home_address` varchar(1000) NOT NULL,
`contact_info` varchar(1000) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
-- --------------------------------------------------------
--
-- Table structure for table `report_info`
--
CREATE TABLE `report_info` (
`mfi_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`report_date` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL,
`account_closing_date` date NOT NULL,
`phone` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL,
`whatsapp` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `trial_balance`
--
CREATE TABLE `trial_balance` (
`id` int NOT NULL,
`account_no` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`account_title` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`trial_balance_debit` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`trial_balance_credit` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`adjustment_debit` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`adjustment_credit` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`adjusted_trial_balance_debit` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL,
`adjusted_trial_balance_credit` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `_borrower_connections`
--
CREATE TABLE `_borrower_connections` (
`id` int NOT NULL,
`value` varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `_borrower_connections`
--
INSERT INTO `_borrower_connections` (`id`, `value`) VALUES
(1, 'ບໍ່ມີສາຍພົວພັນ'),
(2, 'ຜູ້ຖືຮຸ້ນ'),
(3, 'ຜູ້ອໍານວຍການ'),
(4, 'ພະນັກງານຂອງສະຖາບັນການເງິນ'),
(5, 'ຜູ້ກວດສອບພາຍນອກ'),
(6, 'ສະມາຊິກຄອບຄົວທີ່ໃກ້ຊິດຂອງ (ຜູ້ຖືຮຸ້ນ, ຜູ້ອໍານວຍການ ແລະ ພະນັກງານ)');
-- --------------------------------------------------------
--
-- Table structure for table `_careers`
--
CREATE TABLE `_careers` (
`id` int NOT NULL,
`value` varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `_careers`
--
INSERT INTO `_careers` (`id`, `value`) VALUES
(1, 'ພະນັກງານລັດ'),
(2, 'ພະນັກງານລັດວິສາຫະກິດ'),
(3, 'ພະນັກງານບໍລິສັດເອກະຊົນ'),
(4, 'ນັກທຸລະກິດ'),
(5, 'ຄ້າຂາຍ'),
(6, 'ກໍາມະກອນ'),
(7, 'ອື່ນໆ');
-- --------------------------------------------------------
--
-- Table structure for table `_collateral_categories`
--
CREATE TABLE `_collateral_categories` (
`id` int NOT NULL,
`value` varchar(200) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `_collateral_categories`
--
INSERT INTO `_collateral_categories` (`id`, `value`) VALUES
(1, 'ອາຄານ, ອາຄານ ແລະ ທີ່ດິນ, ເຮືອນ, ເຮືອນ ແລະ ທີ່ດິນ, ທີ່ດິນ'),
(2, 'ເງິນໃນບັນຊີ ຫລື ເອກະສານມີຄ່າ'),
(3, 'ເຄື່ອງຈັກ ຫລື ອຸປະກອນຕ່າງໆ'),
(4, 'ໂຄງການ'),
(5, 'ຍານພາຫະນະ'),
(6, 'ບຸກຄົນຄ້ຳປະກັນ'),
(7, 'ວັດຖຸມີຄ່າ'),
(8, 'ອື່ນໆ');
-- --------------------------------------------------------
--
-- Table structure for table `_countries`
--
CREATE TABLE `_countries` (
`id` int NOT NULL,
`en_short` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`en_formal` varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`cn_short` varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`cn_formal` varchar(1000) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `_countries`
--
INSERT INTO `_countries` (`id`, `en_short`, `en_formal`, `cn_short`, `cn_formal`) VALUES
(1, 'Laos', 'the Lao People\'s Democratic Republic', '老挝', '老挝人民民主共和国'),
(2, 'Afghanistan', 'the Islamic Republic of Afghanistan', '阿富汗', '阿富汗伊斯兰共和国'),
(3, 'Albania', 'the Republic of Albania', '阿尔巴尼亚', '阿尔巴尼亚共和国'),
(4, 'Algeria', 'the People\'s Democratic Republic of Algeria', '阿尔及利亚', '阿尔及利亚民主人民共和国'),
(5, 'Andorra', 'the Principality of Andorra', '安道尔', '安道尔公国'),
(6, 'Angola', 'the Republic of Angola', '安哥拉', '安哥拉共和国'),
(7, 'Antigua and Barbuda', 'Antigua and Barbuda', '安提瓜和巴布达', '安提瓜和巴布达'),
(8, 'Argentina', 'the Argentine Republic', '阿根廷', '阿根廷共和国'),
(9, 'Armenia', 'the Republic of Armenia', '亚美尼亚', '亚美尼亚共和国'),
(10, 'Australia', 'Australia', '澳大利亚', '澳大利亚'),
(11, 'Austria', 'the Republic of Austria', '奥地利', '奥地利共和国'),
(12, 'Azerbaijan', 'the Republic of Azerbaijan', '阿塞拜疆', '阿塞拜疆共和国'),
(13, 'Bahamas (the)', 'the Commonwealth of the Bahamas', '巴哈马', '巴哈马国'),
(14, 'Bahrain', 'the Kingdom of Bahrain', '巴林', '巴林王国'),
(15, 'Bangladesh', 'the People\'s Republic of Bangladesh', '孟加拉国', '孟加拉人民共和国'),
(16, 'Barbados', 'Barbados', '巴巴多斯', '巴巴多斯'),
(17, 'Belarus', 'the Republic of Belarus', '白俄罗斯', '白俄罗斯共和国'),
(18, 'Belgium', 'the Kingdom of Belgium', '比利时', '比利时王国'),
(19, 'Belize', 'Belize', '伯利兹', '伯利兹'),
(20, 'Benin', 'the Republic of Benin', '贝宁', '贝宁共和国'),
(21, 'Bhutan', 'the Kingdom of Bhutan', '不丹', '不丹王国'),
(22, 'Bolivia (Plurinational State of)', 'the Plurinational State of Bolivia', '多民族玻利维亚国', '多民族玻利维亚国'),
(23, 'Bosnia and Herzegovina', 'Bosnia and Herzegovina', '波斯尼亚和黑塞哥维那', '波斯尼亚和黑塞哥维那'),
(24, 'Botswana', 'the Republic of Botswana', '博茨瓦纳', '博茨瓦纳共和国'),
(25, 'Brazil', 'the Federative Republic of Brazil', '巴西', '巴西联邦共和国'),
(26, 'Brunei Darussalam', 'Brunei Darussalam', '文莱达鲁萨兰国', '文莱达鲁萨兰国'),
(27, 'Bulgaria', 'the Republic of Bulgaria', '保加利亚', '保加利亚共和国'),
(28, 'Burkina Faso', 'Burkina Faso', '布基纳法索', '布基纳法索'),
(29, 'Burundi', 'the Republic of Burundi', '布隆迪', '布隆迪共和国'),
(30, 'Cabo Verde', 'the Republic of Cabo Verde', '佛得角', '佛得角共和国'),
(31, 'Cambodia', 'the Kingdom of Cambodia', '柬埔寨', '柬埔寨王国'),
(32, 'Cameroon', 'the Republic of Cameroon', '喀麦隆', '喀麦隆共和国'),
(33, 'Canada', 'Canada', '加拿大', '加拿大'),
(34, 'Central African Republic (the)', 'the Central African Republic', '中非共和国', '中非共和国'),
(35, 'Chad', 'the Republic of Chad', '乍得', '乍得共和国'),
(36, 'Chile', 'the Republic of Chile', '智利', '智利共和国'),
(37, 'China', 'the People\'s Republic of China', '中国', '中华人民共和国'),
(38, 'Colombia', 'the Republic of Colombia', '哥伦比亚', '哥伦比亚共和国'),
(39, 'Comoros (the)', 'the Union of the Comoros', '科摩罗', '科摩罗联盟'),
(40, 'Congo (the)', 'the Republic of the Congo', '刚果(布)', '刚果共和国'),
(41, 'Costa Rica', 'the Republic of Costa Rica', '哥斯达黎加', '哥斯达黎加共和国'),
(42, 'Côte d\'Ivoire', 'the Republic of Côte d\'Ivoire', '科特迪瓦', '科特迪瓦共和国'),
(43, 'Croatia', 'the Republic of Croatia', '克罗地亚', '克罗地亚共和国'),
(44, 'Cuba', 'the Republic of Cuba', '古巴', '古巴共和国'),
(45, 'Cyprus', 'the Republic of Cyprus', '塞浦路斯', '塞浦路斯共和国'),
(46, 'Czechia', 'the Czech Republic', '捷克', '捷克共和国'),
(47, 'Democratic People\'s Republic of Korea (the)', 'the Democratic People\'s Republic of Korea', '朝鲜民主主义人民共和国', '朝鲜民主主义人民共和国'),
(48, 'Democratic Republic of the Congo (the)', 'the Democratic Republic of the Congo', '刚果民主共和国', '刚果民主共和国'),
(49, 'Denmark', 'the Kingdom of Denmark', '丹麦', '丹麦王国'),
(50, 'Djibouti', 'the Republic of Djibouti', '吉布提', '吉布提共和国'),
(51, 'Dominica', 'the Commonwealth of Dominica', '多米尼克', '多米尼克国'),
(52, 'Dominican Republic (the)', 'the Dominican Republic', '多米尼加', '多米尼加共和国'),
(53, 'Ecuador', 'the Republic of Ecuador', '厄瓜多尔', '厄瓜多尔共和国'),
(54, 'Egypt', 'the Arab Republic of Egypt', '埃及', '阿拉伯埃及共和国'),
(55, 'El Salvador', 'the Republic of El Salvador', '萨尔瓦多', '萨尔瓦多共和国'),
(56, 'Equatorial Guinea', 'the Republic of Equatorial Guinea', '赤道几内亚', '赤道几内亚共和国'),
(57, 'Eritrea', 'the State of Eritrea', '厄立特里亚', '厄立特里亚国'),
(58, 'Estonia', 'the Republic of Estonia', '爱沙尼亚', '爱沙尼亚共和国'),
(59, 'Eswatini', 'the Kingdom of Eswatini', '斯威士兰', '斯威士兰王国'),
(60, 'Ethiopia', 'the Federal Democratic Republic of Ethiopia', '埃塞俄比亚', '埃塞俄比亚联邦民主共和国'),
(61, 'Fiji', 'the Republic of Fiji', '斐济', '斐济共和国'),
(62, 'Finland', 'the Republic of Finland', '芬兰', '芬兰共和国'),
(63, 'France', 'the French Republic', '法国', '法兰西共和国'),
(64, 'Gabon', 'the Gabonese Republic', '加蓬', '加蓬共和国'),
(65, 'Gambia (the)', 'the Republic of the Gambia', '冈比亚', '冈比亚共和国'),
(66, 'Georgia', 'Georgia', '格鲁吉亚', '格鲁吉亚'),
(67, 'Germany', 'the Federal Republic of Germany', '德国', '德意志联邦共和国'),
(68, 'Ghana', 'the Republic of Ghana', '加纳', '加纳共和国'),
(69, 'Greece', 'the Hellenic Republic', '希腊', '希腊共和国'),
(70, 'Grenada', 'Grenada', '格林纳达', '格林纳达'),
(71, 'Guatemala', 'the Republic of Guatemala', '危地马拉', '危地马拉共和国'),
(72, 'Guinea', 'the Republic of Guinea', '几内亚', '几内亚共和国'),
(73, 'Guinea-Bissau', 'the Republic of Guinea-Bissau', '几内亚比绍', '几内亚比绍共和国'),
(74, 'Guyana', 'the Co-operative Republic of Guyana', '圭亚那', '圭亚那合作共和国'),
(75, 'Haiti', 'the Republic of Haiti', '海地', '海地共和国'),
(76, 'Honduras', 'the Republic of Honduras', '洪都拉斯', '洪都拉斯共和国'),
(77, 'Hungary', 'Hungary', '匈牙利', '匈牙利'),
(78, 'Iceland', 'the Republic of Iceland', '冰岛', '冰岛共和国'),
(79, 'India', 'the Republic of India', '印度', '印度共和国'),
(80, 'Indonesia', 'the Republic of Indonesia', '印度尼西亚', '印度尼西亚共和国'),
(81, 'Iran (Islamic Republic of)', 'the Islamic Republic of Iran', '伊朗伊斯兰共和国', '伊朗伊斯兰共和国'),
(82, 'Iraq', 'the Republic of Iraq', '伊拉克', '伊拉克共和国'),
(83, 'Ireland', 'Ireland', '爱尔兰', '爱尔兰'),
(84, 'Israel', 'the State of Israel', '以色列', '以色列国'),
(85, 'Italy', 'the Republic of Italy', '意大利', '意大利共和国'),
(86, 'Jamaica', 'Jamaica', '牙买加', '牙买加'),
(87, 'Japan', 'Japan', '日本', '日本国'),
(88, 'Jordan', 'the Hashemite Kingdom of Jordan', '约旦', '约旦哈希姆王国'),
(89, 'Kazakhstan', 'the Republic of Kazakhstan', '哈萨克斯坦', '哈萨克斯坦共和国'),
(90, 'Kenya', 'the Republic of Kenya', '肯尼亚', '肯尼亚共和国'),
(91, 'Kiribati', 'the Republic of Kiribati', '基里巴斯', '基里巴斯共和国'),
(92, 'Kuwait', 'the State of Kuwait', '科威特', '科威特国'),
(93, 'Kyrgyzstan', 'the Kyrgyz Republic', '吉尔吉斯斯坦', '吉尔吉斯共和国'),
(94, 'Latvia', 'the Republic of Latvia', '拉脱维亚', '拉脱维亚共和国'),
(95, 'Lebanon', 'the Lebanese Republic', '黎巴嫩', '黎巴嫩共和国'),
(96, 'Lesotho', 'the Kingdom of Lesotho', '莱索托', '莱索托王国'),
(97, 'Liberia', 'the Republic of Liberia', '利比里亚', '利比里亚共和国'),
(98, 'Libya', 'the State of Libya', '利比亚', '利比亚国'),
(99, 'Liechtenstein', 'the Principality of Liechtenstein', '列支敦士登', '列支敦士登公国'),
(100, 'Lithuania', 'the Republic of Lithuania', '立陶宛', '立陶宛共和国'),
(101, 'Luxembourg', 'the Grand Duchy of Luxembourg', '卢森堡', '卢森堡大公国'),
(102, 'Madagascar', 'the Republic of Madagascar', '马达加斯加', '马达加斯加共和国'),
(103, 'Malawi', 'the Republic of Malawi', '马拉维', '马拉维共和国'),
(104, 'Malaysia', 'Malaysia', '马来西亚', '马来西亚'),
(105, 'Maldives', 'the Republic of Maldives', '马尔代夫', '马尔代夫共和国'),
(106, 'Mali', 'the Republic of Mali', '马里', '马里共和国'),
(107, 'Malta', 'the Republic of Malta', '马耳他', '马耳他共和国'),
(108, 'Marshall Islands (the)', 'the Republic of the Marshall Islands', '马绍尔群岛', '马绍尔群岛共和国'),
(109, 'Mauritania', 'the Islamic Republic of Mauritania', '毛里塔尼亚', '毛里塔尼亚伊斯兰共和国'),
(110, 'Mauritius', 'the Republic of Mauritius', '毛里求斯', '毛里求斯共和国'),
(111, 'Mexico', 'the United Mexican States', '墨西哥', '墨西哥合众国'),
(112, 'Micronesia (Federated States of)', 'the Federated States of Micronesia', '密克罗尼西亚联邦', '密克罗尼西亚联邦'),
(113, 'Monaco', 'the Principality of Monaco', '摩纳哥', '摩纳哥公国'),
(114, 'Mongolia', 'Mongolia', '蒙古', '蒙古国'),
(115, 'Montenegro', 'Montenegro', '黑山', '黑山'),
(116, 'Morocco', 'the Kingdom of Morocco', '摩洛哥', '摩洛哥王国'),
(117, 'Mozambique', 'the Republic of Mozambique', '莫桑比克', '莫桑比克共和国'),
(118, 'Myanmar', 'the Republic of the Union of Myanmar', '缅甸', '缅甸联邦共和国'),
(119, 'Namibia', 'the Republic of Namibia', '纳米比亚', '纳米比亚共和国'),
(120, 'Nauru', 'the Republic of Nauru', '瑙鲁', '瑙鲁共和国'),
(121, 'Nepal', 'Nepal', '尼泊尔', '尼泊尔'),
(122, 'Netherlands (the)', 'the Kingdom of the Netherlands', '荷兰', '荷兰王国'),
(123, 'New Zealand', 'New Zealand', '新西兰', '新西兰'),
(124, 'Nicaragua', 'the Republic of Nicaragua', '尼加拉瓜', '尼加拉瓜共和国'),
(125, 'Niger (the)', 'the Republic of the Niger', '尼日尔', '尼日尔共和国'),
(126, 'Nigeria', 'the Federal Republic of Nigeria', '尼日利亚', '尼日利亚联邦共和国'),
(127, 'North Macedonia', 'the Republic of North Macedonia', '北马其顿', '北马其顿共和国'),
(128, 'Norway', 'the Kingdom of Norway', '挪威', '挪威王国'),
(129, 'Oman', 'the Sultanate of Oman', '阿曼', '阿曼苏丹国'),
(130, 'Pakistan', 'the Islamic Republic of Pakistan', '巴基斯坦', '巴基斯坦伊斯兰共和国'),
(131, 'Palau', 'the Republic of Palau', '帕劳', '帕劳共和国'),
(132, 'Panama', 'the Republic of Panama', '巴拿马', '巴拿马共和国'),
(133, 'Papua New Guinea', 'the Independent State of Papua New Guinea', '巴布亚新几内亚', '巴布亚新几内亚独立国'),
(134, 'Paraguay', 'the Republic of Paraguay', '巴拉圭', '巴拉圭共和国'),
(135, 'Peru', 'the Republic of Peru', '秘鲁', '秘鲁共和国'),
(136, 'Philippines (the)', 'the Republic of the Philippines', '菲律宾', '菲律宾共和国'),
(137, 'Poland', 'the Republic of Poland', '波兰', '波兰共和国'),
(138, 'Portugal', 'the Portuguese Republic', '葡萄牙', '葡萄牙共和国'),
(139, 'Qatar', 'the State of Qatar', '卡塔尔', '卡塔尔国'),
(140, 'Republic of Korea (the)', 'the Republic of Korea', '大韩民国', '大韩民国'),
(141, 'Republic of Moldova (the)', 'the Republic of Moldova', '摩尔多瓦共和国', '摩尔多瓦共和国'),
(142, 'Romania', 'Romania', '罗马尼亚', '罗马尼亚'),
(143, 'Russian Federation (the)', 'the Russian Federation', '俄罗斯联邦', '俄罗斯联邦'),
(144, 'Rwanda', 'the Republic of Rwanda', '卢旺达', '卢旺达共和国'),
(145, 'Saint Kitts and Nevis', 'Saint Kitts and Nevis', '圣基茨和尼维斯', '圣基茨和尼维斯'),
(146, 'Saint Lucia', 'Saint Lucia', '圣卢西亚', '圣卢西亚'),
(147, 'Saint Vincent and the Grenadines', 'Saint Vincent and the Grenadines', '圣文森特和格林纳丁斯', '圣文森特和格林纳丁斯'),
(148, 'Samoa', 'the Independent State of Samoa', '萨摩亚', '萨摩亚独立国'),
(149, 'San Marino', 'the Republic of San Marino', '圣马力诺', '圣马力诺共和国'),
(150, 'Sao Tome and Principe', 'the Democratic Republic of Sao Tome and Principe', '圣多美和普林西比', '圣多美和普林西比民主共和国'),
(151, 'Saudi Arabia', 'the Kingdom of Saudi Arabia', '沙特阿拉伯', '沙特阿拉伯王国'),
(152, 'Senegal', 'the Republic of Senegal', '塞内加尔', '塞内加尔共和国'),
(153, 'Serbia', 'the Republic of Serbia', '塞尔维亚', '塞尔维亚共和国'),
(154, 'Seychelles', 'the Republic of Seychelles', '塞舌尔', '塞舌尔共和国'),
(155, 'Sierra Leone', 'the Republic of Sierra Leone', '塞拉利昂', '塞拉利昂共和国'),
(156, 'Singapore', 'the Republic of Singapore', '新加坡', '新加坡共和国'),
(157, 'Slovakia', 'the Slovak Republic', '斯洛伐克', '斯洛伐克共和国'),
(158, 'Slovenia', 'the Republic of Slovenia', '斯洛文尼亚', '斯洛文尼亚共和国'),
(159, 'Solomon Islands', 'Solomon Islands', '所罗门群岛', '所罗门群岛'),
(160, 'Somalia', 'the Federal Republic of Somalia', '索马里', '索马里联邦共和国'),
(161, 'South Africa', 'the Republic of South Africa', '南非', '南非共和国'),
(162, 'South Sudan', 'the Republic of South Sudan', '南苏丹', '南苏丹共和国'),
(163, 'Spain', 'the Kingdom of Spain', '西班牙', '西班牙王国'),
(164, 'Sri Lanka', 'the Democratic Socialist Republic of Sri Lanka', '斯里兰卡', '斯里兰卡民主社会主义共和国'),
(165, 'Sudan (the)', 'the Republic of the Sudan', '苏丹', '苏丹共和国'),
(166, 'Suriname', 'the Republic of Suriname', '苏里南', '苏里南共和国'),
(167, 'Sweden', 'the Kingdom of Sweden', '瑞典', '瑞典王国'),
(168, 'Switzerland', 'the Swiss Confederation', '瑞士', '瑞士联邦'),
(169, 'Syrian Arab Republic (the)', 'the Syrian Arab Republic', '阿拉伯叙利亚共和国', '阿拉伯叙利亚共和国'),
(170, 'Tajikistan', 'the Republic of Tajikistan', '塔吉克斯坦', '塔吉克斯坦共和国'),
(171, 'Thailand', 'the Kingdom of Thailand', '泰国', '泰王国'),
(172, 'Timor-Leste', 'the Democratic Republic of Timor-Leste', '东帝汶', '东帝汶民主共和国'),
(173, 'Togo', 'the Togolese Republic', '多哥', '多哥共和国'),
(174, 'Tonga', 'the Kingdom of Tonga', '汤加', '汤加王国'),
(175, 'Trinidad and Tobago', 'the Republic of Trinidad and Tobago', '特立尼达和多巴哥', '特立尼达和多巴哥共和国'),
(176, 'Tunisia', 'the Republic of Tunisia', '突尼斯', '突尼斯共和国'),
(177, 'Turkey', 'the Republic of Turkey', '土耳其', '土耳其共和国'),
(178, 'Turkmenistan', 'Turkmenistan', '土库曼斯坦', '土库曼斯坦'),
(179, 'Tuvalu', 'Tuvalu', '图瓦卢', '图瓦卢'),
(180, 'Uganda', 'the Republic of Uganda', '乌干达', '乌干达共和国'),
(181, 'Ukraine', 'Ukraine', '乌克兰', '乌克兰'),
(182, 'United Arab Emirates (the)', 'the United Arab Emirates', '阿拉伯联合酋长国', '阿拉伯联合酋长国'),
(183, 'United Kingdom of Great Britain and Northern Ireland (the)', 'the United Kingdom of Great Britain and Northern Ireland', '大不列颠及北爱尔兰联合王国', '大不列颠及北爱尔兰联合王国'),
(184, 'United Republic of Tanzania (the)', 'the United Republic of Tanzania', '坦桑尼亚联合共和国', '坦桑尼亚联合共和国'),
(185, 'United States of America (the)', 'the United States of America', '美利坚合众国', '美利坚合众国'),
(186, 'Uruguay', 'the Eastern Republic of Uruguay', '乌拉圭', '乌拉圭东岸共和国'),
(187, 'Uzbekistan', 'the Republic of Uzbekistan', '乌兹别克斯坦', '乌兹别克斯坦共和国'),
(188, 'Vanuatu', 'the Republic of Vanuatu', '瓦努阿图', '瓦努阿图共和国'),
(189, 'Venezuela (Bolivarian Republic of)', 'the Bolivarian Republic of Venezuela', '委内瑞拉玻利瓦尔共和国', '委内瑞拉玻利瓦尔共和国'),
(190, 'Viet Nam', 'the Socialist Republic of Viet Nam', '越南', '越南社会主义共和国'),
(191, 'Yemen', 'the Republic of Yemen', '也门', '也门共和国'),
(192, 'Zambia', 'the Republic of Zambia', '赞比亚', '赞比亚共和国'),
(193, 'Zimbabwe', 'the Republic of Zimbabwe', '津巴布韦', '津巴布韦共和国'),
(194, 'Holy See (the) *', 'the Holy See *', '罗马教廷 *', '罗马教廷 *'),
(195, 'State of Palestine (the) *', 'the State of Palestine *', '巴勒斯坦国 *', '巴勒斯坦国 *'),
(196, 'Cook Islands (the) **', 'the Cook Islands **', '库克群岛 **', '库克群岛 **'),
(197, 'Niue **', 'Niue **', '纽埃 **', '纽埃 **');
-- --------------------------------------------------------
--
-- Table structure for table `_customer_types`
--
CREATE TABLE `_customer_types` (
`id` int NOT NULL,
`value` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `_customer_types`
--
INSERT INTO `_customer_types` (`id`, `value`) VALUES
(1, 'ລູກຄ້າບຸກຄົນ'),
(2, 'ລູກຄ້ານິຕິບຸກຄົນ');
-- --------------------------------------------------------
--
-- Table structure for table `_deposit_types`
--
CREATE TABLE `_deposit_types` (
`id` int NOT NULL,
`value` varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `_deposit_types`
--
INSERT INTO `_deposit_types` (`id`, `value`) VALUES
(1, 'ເງິນຝາກກະແສລາຍວັນ'),
(2, 'ເງິນຝາກປະຢັດ'),
(3, 'ເງິນຝາກປະຈໍາ'),
(4, 'ອື່ນໆ');
-- --------------------------------------------------------
--
-- Table structure for table `_districts`
--
CREATE TABLE `_districts` (
`id` int NOT NULL,
`value` varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`province_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `_districts`
--
INSERT INTO `_districts` (`id`, `value`, `province_id`) VALUES
(1, 'ຈັນທະບູລີ', 1),
(2, 'ສີໂຄດຕະບອງ', 1),
(3, 'ໄຊເສດຖາ', 1),
(4, 'ສີສັດຕະນາກ', 1),
(5, 'ນາຊາຍທອງ', 1),
(6, 'ໄຊທານີ', 1),
(7, 'ຫາດຊາຍຟອງ', 1),
(8, 'ສັງທອງ', 1),
(9, 'ປາກງື່ມ', 1),
(10, 'ດ່ານຊ້າງມີໄຊ', 1),
(11, 'ໂພນໂຮງ', 2),
(12, 'ທຸລະຄົມ', 2),
(13, 'ແກ້ວອຸດົມ', 2),
(14, 'ກາສີ', 2),
(15, 'ວັງວຽງ', 2),
(16, 'ເຟືອງ', 2),
(17, 'ຊະນະຄາມ', 2),
(18, 'ແມດ', 2),
(19, 'ວຽງຄໍາ', 2),
(20, 'ຫີນເຫີບ', 2),
(21, 'ໝື່ນ', 2),
(22, 'ຜົ້ງສາລີ', 3),
(23, 'ໃໝ່', 3),
(24, 'ຂວາ', 3),
(25, 'ສຳພັນ', 3),
(26, 'ບຸນເໜືອ', 3),
(27, 'ຍອດອູ', 3),
(28, 'ບຸນໃຕ້', 3),
(29, 'ນ້ຳທາ', 4),
(30, 'ສີງ', 4),
(31, 'ລອງ', 4),
(32, 'ວຽງພູຄາ', 4),
(33, 'ນາແລ', 4),
(34, 'ໄຊ', 5),
(35, 'ຫຼາ', 5),
(36, 'ນາໝໍ້', 5),
(37, 'ງາ', 5),
(38, 'ແບງ', 5),
(39, 'ຮຸນ', 5),
(40, 'ປາກແບງ', 5),
(41, 'ຫ້ວຍຊາຍ', 6),
(42, 'ຕົ້ນເຜີ້ງ', 6),
(43, 'ເມິງ', 6),
(44, 'ຜາອຸດົມ', 6),
(45, 'ປາກທາ', 6),
(46, 'ນະຄອນຫຼວງພະບາງ', 7),
(47, 'ຊຽງເງິນ', 7),
(48, 'ນານ', 7),
(49, 'ປາກອູ', 7),
(50, 'ນ້ຳບາກ', 7),
(51, 'ງອຍ', 7),
(52, 'ປາກແຊງ', 7),
(53, 'ໂພນໄຊ', 7),
(54, 'ຈອມເພັດ', 7),
(55, 'ວຽງຄຳ', 7),
(56, 'ພູຄູນ', 7),
(57, 'ໂພນທອງ', 7),
(58, 'ຊຳເໜືອ', 8),
(59, 'ຊຽງຄໍ້', 8),
(60, 'ຮ້ຽມ', 8),
(61, 'ວຽງໄຊ', 8),
(62, 'ຫົວເມືອງ', 8),
(63, 'ຊຳໃຕ້', 8),
(64, 'ສົບເບົາ', 8),
(65, 'ແອດ', 8),
(66, 'ກວັນ', 8),
(67, 'ຊ່ອນ', 8),
(68, 'ໄຊຍະບູລີ', 9),
(69, 'ຄອບ', 9),
(70, 'ຫົງສາ', 9),
(71, 'ເງິນ', 9),
(72, 'ຊຽງຮອນ', 9),
(73, 'ພຽງ', 9),
(74, 'ປາກລາຍ', 9),
(75, 'ແກ່ນທ້າວ', 9),
(76, 'ບໍ່ແຕນ', 9),
(77, 'ທົ່ງມີໄຊ', 9),
(78, 'ໄຊສະຖານ', 9),
(79, 'ແປກ', 10),
(80, 'ຄຳ', 10),
(81, 'ໜອງແຮດ', 10),
(82, 'ຄູນ', 10),
(83, 'ໝອກໃໝ່', 10),
(84, 'ພູກູດ', 10),
(85, 'ຜາໄຊ', 10),
(86, 'ປາກຊັນ', 11),
(87, 'ທ່າພະບາດ', 11),
(88, 'ປາກກະດິງ', 11),
(89, 'ບໍລິຄັນ', 11),
(90, 'ຄຳເກີດ', 11),
(91, 'ວຽງທອງ', 11),
(92, 'ໄຊຈຳພອນ', 11),
(93, 'ທ່າແຂກ', 12),
(94, 'ມະຫາໄຊ', 12),
(95, 'ໜອງບົກ', 12),
(96, 'ຫີນບູນ', 12),
(97, 'ຍົມມະລາດ', 12),
(98, 'ບົວລະພາ', 12),
(99, 'ນາກາຍ', 12),
(100, 'ເຊບັ້ງໄຟ', 12),
(101, 'ໄຊບົວທອງ', 12),
(102, 'ຄູນຄຳ', 12),
(103, 'ນະຄອນໄກສອນພົມວິຫານ', 13),
(104, 'ອຸທຸມພອນ', 13),
(105, 'ອາດສະພັງທອງ', 13),
(106, 'ພີນ', 13),
(107, 'ເຊໂປນ', 13),
(108, 'ນອງ', 13),
(109, 'ທ່າປາງທອງ', 13),
(110, 'ສອງຄອນ', 13),
(111, 'ຈຳພອນ', 13),
(112, 'ຊົນບູລີ', 13),
(113, 'ໄຊບູລີ', 13),
(114, 'ວິລະບູລີ', 13),
(115, 'ອາດສະພອນ', 13),
(116, 'ໄຊພູທອງ', 13),
(117, 'ພະລານໄຊ', 13),
(118, 'ສາລະວັນ', 14),
(119, 'ຕະໂອ້ຍ', 14),
(120, 'ຕຸ້ມລານ', 14),
(121, 'ລະຄອນເພັງ', 14),
(122, 'ວາປີ', 14),
(123, 'ຄົງເຊໂດນ', 14),
(124, 'ເລົ່າງາມ', 14),
(125, 'ສະໝ້ວຍ', 14),
(126, 'ລະມາມ', 15),
(127, 'ກະລືມ', 15),
(128, 'ດາກຈືງ', 15),
(129, 'ທ່າແຕງ', 15),
(130, 'ນະຄອນປາກເຊ', 16),
(131, 'ຊະນະສົມບູນ', 16),
(132, 'ບາຈຽງຈະເລີນສຸກ', 16),
(133, 'ປາກຊ່ອງ', 16),
(134, 'ປະທຸມພອນ', 16),
(135, 'ໂພນທອງ', 16),
(136, 'ຈຳປາສັກ', 16),
(137, 'ສຸຂຸມາ', 16),
(138, 'ມູນລະປະໂມກ', 16),
(139, 'ໂຂງ', 16),
(140, 'ໄຊເສດຖາ', 17),
(141, 'ສາມັກຄີໄຊ', 17),
(142, 'ສະໜາມໄຊ', 17),
(143, 'ຊານໄຊ', 17),
(144, 'ພູວົງ', 17),
(145, 'ອະນຸວົງ', 18),
(146, 'ທ່າໂທມ', 18),
(147, 'ລ່ອງແຈ້ງ', 18),
(148, 'ຮົ່ມ', 18),
(149, 'ລ້ອງຊານ', 18);
-- --------------------------------------------------------
--
-- Table structure for table `_economic_branches`
--
CREATE TABLE `_economic_branches` (
`id` int NOT NULL,
`value` varchar(500) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `_economic_branches`
--
INSERT INTO `_economic_branches` (`id`, `value`) VALUES
(1, 'ອຸດສາຫະກຳ'),
(2, 'ກໍ່ສ້າງ'),
(3, 'ປະກອບວັດຖຸເຕັກນິກ'),
(4, 'ກະສິກໍາປ່າໄມ້ '),
(5, 'ຄ້າຂາຍ ແລະ ການຄ້າ'),
(6, 'ຂົນສົ່ງ ແລະ ໄປສະນີ'),
(7, 'ການບໍລິການ'),
(8, 'ຫັດຖະກໍາ'),
(9, 'ປະເພດອື່ນໆ');
-- --------------------------------------------------------
--
-- Table structure for table `_economic_sectors`
--