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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
6979
6980
6981
6982
6983
6984
6985
6986
6987
6988
6989
6990
6991
6992
6993
6994
6995
6996
6997
6998
6999
7000
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
7053
7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
7072
7073
7074
7075
7076
7077
7078
7079
7080
7081
7082
7083
7084
7085
7086
7087
7088
7089
7090
7091
7092
7093
7094
7095
7096
7097
7098
7099
7100
7101
7102
7103
7104
7105
7106
7107
7108
7109
7110
7111
7112
7113
7114
7115
7116
7117
7118
7119
7120
7121
7122
7123
7124
7125
7126
7127
7128
7129
7130
7131
7132
7133
7134
7135
7136
7137
7138
7139
7140
7141
7142
7143
7144
7145
7146
7147
7148
7149
7150
7151
7152
7153
7154
7155
7156
7157
7158
7159
7160
7161
7162
7163
7164
7165
7166
7167
7168
7169
7170
7171
7172
7173
7174
7175
7176
7177
7178
7179
7180
7181
7182
7183
7184
7185
7186
7187
7188
7189
7190
7191
7192
7193
7194
7195
7196
7197
7198
7199
7200
7201
7202
7203
7204
7205
7206
7207
7208
7209
7210
7211
7212
7213
7214
7215
7216
7217
7218
7219
7220
7221
7222
7223
7224
7225
7226
7227
7228
7229
7230
7231
7232
7233
7234
7235
7236
7237
7238
7239
7240
7241
7242
7243
7244
7245
7246
7247
7248
7249
7250
7251
7252
7253
7254
7255
7256
7257
7258
7259
7260
7261
7262
7263
7264
7265
7266
7267
7268
7269
7270
7271
7272
7273
7274
7275
7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
| /*
| Navicat Premium Dump SQL
|
| Source Server : local
| Source Server Type : MySQL
| Source Server Version : 90001 (9.0.1)
| Source Host : localhost:3306
| Source Schema : eims
|
| Target Server Type : MySQL
| Target Server Version : 90001 (9.0.1)
| File Encoding : 65001
|
| Date: 24/02/2025 14:36:44
| */
|
| SET NAMES utf8mb4;
| SET FOREIGN_KEY_CHECKS = 0;
|
| -- ----------------------------
| -- Table structure for ACT_EVT_LOG
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_EVT_LOG`;
| CREATE TABLE `ACT_EVT_LOG` (
| `LOG_NR_` bigint NOT NULL AUTO_INCREMENT,
| `TYPE_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `TIME_STAMP_` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
| `USER_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `DATA_` longblob,
| `LOCK_OWNER_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `LOCK_TIME_` timestamp(3) NULL DEFAULT NULL,
| `IS_PROCESSED_` tinyint DEFAULT '0',
| PRIMARY KEY (`LOG_NR_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_EVT_LOG
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_GE_BYTEARRAY
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_GE_BYTEARRAY`;
| CREATE TABLE `ACT_GE_BYTEARRAY` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT NULL,
| `NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `DEPLOYMENT_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `BYTES_` longblob,
| `GENERATED_` tinyint DEFAULT NULL,
| PRIMARY KEY (`ID_`),
| KEY `ACT_FK_BYTEARR_DEPL` (`DEPLOYMENT_ID_`),
| CONSTRAINT `ACT_FK_BYTEARR_DEPL` FOREIGN KEY (`DEPLOYMENT_ID_`) REFERENCES `ACT_RE_DEPLOYMENT` (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_GE_BYTEARRAY
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_GE_PROPERTY
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_GE_PROPERTY`;
| CREATE TABLE `ACT_GE_PROPERTY` (
| `NAME_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `VALUE_` varchar(300) COLLATE utf8mb3_bin DEFAULT NULL,
| `REV_` int DEFAULT NULL,
| PRIMARY KEY (`NAME_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_GE_PROPERTY
| -- ----------------------------
| BEGIN;
| INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('batch.schema.version', '7.0.1.1', 1);
| INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('cfg.execution-related-entities-count', 'true', 1);
| INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('cfg.task-related-entities-count', 'true', 1);
| INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('common.schema.version', '7.0.1.1', 1);
| INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('entitylink.schema.version', '7.0.1.1', 1);
| INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('eventsubscription.schema.version', '7.0.1.1', 1);
| INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('identitylink.schema.version', '7.0.1.1', 1);
| INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('job.schema.version', '7.0.1.1', 1);
| INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('next.dbid', '1', 1);
| INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('schema.history', 'create(7.0.1.1)', 1);
| INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('schema.version', '7.0.1.1', 1);
| INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('task.schema.version', '7.0.1.1', 1);
| INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('variable.schema.version', '7.0.1.1', 1);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_HI_ACTINST
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_HI_ACTINST`;
| CREATE TABLE `ACT_HI_ACTINST` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT '1',
| `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `ACT_ID_` varchar(255) COLLATE utf8mb3_bin NOT NULL,
| `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `CALL_PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `ACT_NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `ACT_TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL,
| `ASSIGNEE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `START_TIME_` datetime(3) NOT NULL,
| `END_TIME_` datetime(3) DEFAULT NULL,
| `TRANSACTION_ORDER_` int DEFAULT NULL,
| `DURATION_` bigint DEFAULT NULL,
| `DELETE_REASON_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '',
| PRIMARY KEY (`ID_`),
| KEY `ACT_IDX_HI_ACT_INST_START` (`START_TIME_`),
| KEY `ACT_IDX_HI_ACT_INST_END` (`END_TIME_`),
| KEY `ACT_IDX_HI_ACT_INST_PROCINST` (`PROC_INST_ID_`,`ACT_ID_`),
| KEY `ACT_IDX_HI_ACT_INST_EXEC` (`EXECUTION_ID_`,`ACT_ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_HI_ACTINST
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_HI_ATTACHMENT
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_HI_ATTACHMENT`;
| CREATE TABLE `ACT_HI_ATTACHMENT` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT NULL,
| `USER_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `DESCRIPTION_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `URL_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `CONTENT_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `TIME_` datetime(3) DEFAULT NULL,
| PRIMARY KEY (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_HI_ATTACHMENT
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_HI_COMMENT
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_HI_COMMENT`;
| CREATE TABLE `ACT_HI_COMMENT` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `TIME_` datetime(3) NOT NULL,
| `USER_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `ACTION_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `MESSAGE_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `FULL_MSG_` longblob,
| PRIMARY KEY (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_HI_COMMENT
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_HI_DETAIL
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_HI_DETAIL`;
| CREATE TABLE `ACT_HI_DETAIL` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL,
| `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `ACT_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `NAME_` varchar(255) COLLATE utf8mb3_bin NOT NULL,
| `VAR_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `REV_` int DEFAULT NULL,
| `TIME_` datetime(3) NOT NULL,
| `BYTEARRAY_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `DOUBLE_` double DEFAULT NULL,
| `LONG_` bigint DEFAULT NULL,
| `TEXT_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `TEXT2_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| PRIMARY KEY (`ID_`),
| KEY `ACT_IDX_HI_DETAIL_PROC_INST` (`PROC_INST_ID_`),
| KEY `ACT_IDX_HI_DETAIL_ACT_INST` (`ACT_INST_ID_`),
| KEY `ACT_IDX_HI_DETAIL_TIME` (`TIME_`),
| KEY `ACT_IDX_HI_DETAIL_NAME` (`NAME_`),
| KEY `ACT_IDX_HI_DETAIL_TASK_ID` (`TASK_ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_HI_DETAIL
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_HI_ENTITYLINK
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_HI_ENTITYLINK`;
| CREATE TABLE `ACT_HI_ENTITYLINK` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `LINK_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `CREATE_TIME_` datetime(3) DEFAULT NULL,
| `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `PARENT_ELEMENT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `REF_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `REF_SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `REF_SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `ROOT_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `ROOT_SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `HIERARCHY_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| PRIMARY KEY (`ID_`),
| KEY `ACT_IDX_HI_ENT_LNK_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`,`LINK_TYPE_`),
| KEY `ACT_IDX_HI_ENT_LNK_REF_SCOPE` (`REF_SCOPE_ID_`,`REF_SCOPE_TYPE_`,`LINK_TYPE_`),
| KEY `ACT_IDX_HI_ENT_LNK_ROOT_SCOPE` (`ROOT_SCOPE_ID_`,`ROOT_SCOPE_TYPE_`,`LINK_TYPE_`),
| KEY `ACT_IDX_HI_ENT_LNK_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`,`LINK_TYPE_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_HI_ENTITYLINK
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_HI_IDENTITYLINK
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_HI_IDENTITYLINK`;
| CREATE TABLE `ACT_HI_IDENTITYLINK` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `GROUP_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `USER_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `CREATE_TIME_` datetime(3) DEFAULT NULL,
| `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| PRIMARY KEY (`ID_`),
| KEY `ACT_IDX_HI_IDENT_LNK_USER` (`USER_ID_`),
| KEY `ACT_IDX_HI_IDENT_LNK_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_HI_IDENT_LNK_SUB_SCOPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_HI_IDENT_LNK_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_HI_IDENT_LNK_TASK` (`TASK_ID_`),
| KEY `ACT_IDX_HI_IDENT_LNK_PROCINST` (`PROC_INST_ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_HI_IDENTITYLINK
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_HI_PROCINST
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_HI_PROCINST`;
| CREATE TABLE `ACT_HI_PROCINST` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT '1',
| `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `BUSINESS_KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `START_TIME_` datetime(3) NOT NULL,
| `END_TIME_` datetime(3) DEFAULT NULL,
| `DURATION_` bigint DEFAULT NULL,
| `START_USER_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `START_ACT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `END_ACT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUPER_PROCESS_INSTANCE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `DELETE_REASON_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '',
| `NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `CALLBACK_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `CALLBACK_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `REFERENCE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `REFERENCE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROPAGATED_STAGE_INST_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `BUSINESS_STATUS_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| PRIMARY KEY (`ID_`),
| UNIQUE KEY `PROC_INST_ID_` (`PROC_INST_ID_`),
| KEY `ACT_IDX_HI_PRO_INST_END` (`END_TIME_`),
| KEY `ACT_IDX_HI_PRO_I_BUSKEY` (`BUSINESS_KEY_`),
| KEY `ACT_IDX_HI_PRO_SUPER_PROCINST` (`SUPER_PROCESS_INSTANCE_ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_HI_PROCINST
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_HI_TASKINST
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_HI_TASKINST`;
| CREATE TABLE `ACT_HI_TASKINST` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT '1',
| `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `TASK_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `TASK_DEF_KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROPAGATED_STAGE_INST_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `STATE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `PARENT_TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `DESCRIPTION_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `OWNER_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `ASSIGNEE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `START_TIME_` datetime(3) NOT NULL,
| `IN_PROGRESS_TIME_` datetime(3) DEFAULT NULL,
| `IN_PROGRESS_STARTED_BY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `CLAIM_TIME_` datetime(3) DEFAULT NULL,
| `CLAIMED_BY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUSPENDED_TIME_` datetime(3) DEFAULT NULL,
| `SUSPENDED_BY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `END_TIME_` datetime(3) DEFAULT NULL,
| `COMPLETED_BY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `DURATION_` bigint DEFAULT NULL,
| `DELETE_REASON_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `PRIORITY_` int DEFAULT NULL,
| `IN_PROGRESS_DUE_DATE_` datetime(3) DEFAULT NULL,
| `DUE_DATE_` datetime(3) DEFAULT NULL,
| `FORM_KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '',
| `LAST_UPDATED_TIME_` datetime(3) DEFAULT NULL,
| PRIMARY KEY (`ID_`),
| KEY `ACT_IDX_HI_TASK_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_HI_TASK_SUB_SCOPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_HI_TASK_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_HI_TASK_INST_PROCINST` (`PROC_INST_ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_HI_TASKINST
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_HI_TSK_LOG
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_HI_TSK_LOG`;
| CREATE TABLE `ACT_HI_TSK_LOG` (
| `ID_` bigint NOT NULL AUTO_INCREMENT,
| `TYPE_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `TASK_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `TIME_STAMP_` timestamp(3) NOT NULL,
| `USER_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `DATA_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '',
| PRIMARY KEY (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_HI_TSK_LOG
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_HI_VARINST
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_HI_VARINST`;
| CREATE TABLE `ACT_HI_VARINST` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT '1',
| `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `NAME_` varchar(255) COLLATE utf8mb3_bin NOT NULL,
| `VAR_TYPE_` varchar(100) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `BYTEARRAY_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `DOUBLE_` double DEFAULT NULL,
| `LONG_` bigint DEFAULT NULL,
| `TEXT_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `TEXT2_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `META_INFO_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `CREATE_TIME_` datetime(3) DEFAULT NULL,
| `LAST_UPDATED_TIME_` datetime(3) DEFAULT NULL,
| PRIMARY KEY (`ID_`),
| KEY `ACT_IDX_HI_PROCVAR_NAME_TYPE` (`NAME_`,`VAR_TYPE_`),
| KEY `ACT_IDX_HI_VAR_SCOPE_ID_TYPE` (`SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_HI_VAR_SUB_ID_TYPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_HI_PROCVAR_PROC_INST` (`PROC_INST_ID_`),
| KEY `ACT_IDX_HI_PROCVAR_TASK_ID` (`TASK_ID_`),
| KEY `ACT_IDX_HI_PROCVAR_EXE` (`EXECUTION_ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_HI_VARINST
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_PROCDEF_INFO
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_PROCDEF_INFO`;
| CREATE TABLE `ACT_PROCDEF_INFO` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT NULL,
| `INFO_JSON_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| PRIMARY KEY (`ID_`),
| UNIQUE KEY `ACT_UNIQ_INFO_PROCDEF` (`PROC_DEF_ID_`),
| KEY `ACT_IDX_INFO_PROCDEF` (`PROC_DEF_ID_`),
| KEY `ACT_FK_INFO_JSON_BA` (`INFO_JSON_ID_`),
| CONSTRAINT `ACT_FK_INFO_JSON_BA` FOREIGN KEY (`INFO_JSON_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`),
| CONSTRAINT `ACT_FK_INFO_PROCDEF` FOREIGN KEY (`PROC_DEF_ID_`) REFERENCES `ACT_RE_PROCDEF` (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_PROCDEF_INFO
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_RE_DEPLOYMENT
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_RE_DEPLOYMENT`;
| CREATE TABLE `ACT_RE_DEPLOYMENT` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '',
| `DEPLOY_TIME_` timestamp(3) NULL DEFAULT NULL,
| `DERIVED_FROM_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `DERIVED_FROM_ROOT_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PARENT_DEPLOYMENT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `ENGINE_VERSION_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| PRIMARY KEY (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_RE_DEPLOYMENT
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_RE_MODEL
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_RE_MODEL`;
| CREATE TABLE `ACT_RE_MODEL` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT NULL,
| `NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL,
| `LAST_UPDATE_TIME_` timestamp(3) NULL DEFAULT NULL,
| `VERSION_` int DEFAULT NULL,
| `META_INFO_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `DEPLOYMENT_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `EDITOR_SOURCE_VALUE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `EDITOR_SOURCE_EXTRA_VALUE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '',
| PRIMARY KEY (`ID_`),
| KEY `ACT_FK_MODEL_SOURCE` (`EDITOR_SOURCE_VALUE_ID_`),
| KEY `ACT_FK_MODEL_SOURCE_EXTRA` (`EDITOR_SOURCE_EXTRA_VALUE_ID_`),
| KEY `ACT_FK_MODEL_DEPLOYMENT` (`DEPLOYMENT_ID_`),
| CONSTRAINT `ACT_FK_MODEL_DEPLOYMENT` FOREIGN KEY (`DEPLOYMENT_ID_`) REFERENCES `ACT_RE_DEPLOYMENT` (`ID_`),
| CONSTRAINT `ACT_FK_MODEL_SOURCE` FOREIGN KEY (`EDITOR_SOURCE_VALUE_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`),
| CONSTRAINT `ACT_FK_MODEL_SOURCE_EXTRA` FOREIGN KEY (`EDITOR_SOURCE_EXTRA_VALUE_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_RE_MODEL
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_RE_PROCDEF
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_RE_PROCDEF`;
| CREATE TABLE `ACT_RE_PROCDEF` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT NULL,
| `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `KEY_` varchar(255) COLLATE utf8mb3_bin NOT NULL,
| `VERSION_` int NOT NULL,
| `DEPLOYMENT_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `RESOURCE_NAME_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `DGRM_RESOURCE_NAME_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `DESCRIPTION_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `HAS_START_FORM_KEY_` tinyint DEFAULT NULL,
| `HAS_GRAPHICAL_NOTATION_` tinyint DEFAULT NULL,
| `SUSPENSION_STATE_` int DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '',
| `ENGINE_VERSION_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `DERIVED_FROM_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `DERIVED_FROM_ROOT_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `DERIVED_VERSION_` int NOT NULL DEFAULT '0',
| PRIMARY KEY (`ID_`),
| UNIQUE KEY `ACT_UNIQ_PROCDEF` (`KEY_`,`VERSION_`,`DERIVED_VERSION_`,`TENANT_ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_RE_PROCDEF
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_RU_ACTINST
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_RU_ACTINST`;
| CREATE TABLE `ACT_RU_ACTINST` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT '1',
| `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `ACT_ID_` varchar(255) COLLATE utf8mb3_bin NOT NULL,
| `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `CALL_PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `ACT_NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `ACT_TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL,
| `ASSIGNEE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `START_TIME_` datetime(3) NOT NULL,
| `END_TIME_` datetime(3) DEFAULT NULL,
| `DURATION_` bigint DEFAULT NULL,
| `TRANSACTION_ORDER_` int DEFAULT NULL,
| `DELETE_REASON_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '',
| PRIMARY KEY (`ID_`),
| KEY `ACT_IDX_RU_ACTI_START` (`START_TIME_`),
| KEY `ACT_IDX_RU_ACTI_END` (`END_TIME_`),
| KEY `ACT_IDX_RU_ACTI_PROC` (`PROC_INST_ID_`),
| KEY `ACT_IDX_RU_ACTI_PROC_ACT` (`PROC_INST_ID_`,`ACT_ID_`),
| KEY `ACT_IDX_RU_ACTI_EXEC` (`EXECUTION_ID_`),
| KEY `ACT_IDX_RU_ACTI_EXEC_ACT` (`EXECUTION_ID_`,`ACT_ID_`),
| KEY `ACT_IDX_RU_ACTI_TASK` (`TASK_ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_RU_ACTINST
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_RU_DEADLETTER_JOB
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_RU_DEADLETTER_JOB`;
| CREATE TABLE `ACT_RU_DEADLETTER_JOB` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT NULL,
| `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL,
| `EXCLUSIVE_` tinyint(1) DEFAULT NULL,
| `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROCESS_INSTANCE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `ELEMENT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `ELEMENT_NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `CORRELATION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `EXCEPTION_STACK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `EXCEPTION_MSG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `DUEDATE_` timestamp(3) NULL DEFAULT NULL,
| `REPEAT_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `HANDLER_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `HANDLER_CFG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `CUSTOM_VALUES_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '',
| PRIMARY KEY (`ID_`),
| KEY `ACT_IDX_DEADLETTER_JOB_EXCEPTION_STACK_ID` (`EXCEPTION_STACK_ID_`),
| KEY `ACT_IDX_DEADLETTER_JOB_CUSTOM_VALUES_ID` (`CUSTOM_VALUES_ID_`),
| KEY `ACT_IDX_DEADLETTER_JOB_CORRELATION_ID` (`CORRELATION_ID_`),
| KEY `ACT_IDX_DJOB_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_DJOB_SUB_SCOPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_DJOB_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_FK_DEADLETTER_JOB_EXECUTION` (`EXECUTION_ID_`),
| KEY `ACT_FK_DEADLETTER_JOB_PROCESS_INSTANCE` (`PROCESS_INSTANCE_ID_`),
| KEY `ACT_FK_DEADLETTER_JOB_PROC_DEF` (`PROC_DEF_ID_`),
| CONSTRAINT `ACT_FK_DEADLETTER_JOB_CUSTOM_VALUES` FOREIGN KEY (`CUSTOM_VALUES_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`),
| CONSTRAINT `ACT_FK_DEADLETTER_JOB_EXCEPTION` FOREIGN KEY (`EXCEPTION_STACK_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`),
| CONSTRAINT `ACT_FK_DEADLETTER_JOB_EXECUTION` FOREIGN KEY (`EXECUTION_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`),
| CONSTRAINT `ACT_FK_DEADLETTER_JOB_PROC_DEF` FOREIGN KEY (`PROC_DEF_ID_`) REFERENCES `ACT_RE_PROCDEF` (`ID_`),
| CONSTRAINT `ACT_FK_DEADLETTER_JOB_PROCESS_INSTANCE` FOREIGN KEY (`PROCESS_INSTANCE_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_RU_DEADLETTER_JOB
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_RU_ENTITYLINK
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_RU_ENTITYLINK`;
| CREATE TABLE `ACT_RU_ENTITYLINK` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT NULL,
| `CREATE_TIME_` datetime(3) DEFAULT NULL,
| `LINK_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `PARENT_ELEMENT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `REF_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `REF_SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `REF_SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `ROOT_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `ROOT_SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `HIERARCHY_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| PRIMARY KEY (`ID_`),
| KEY `ACT_IDX_ENT_LNK_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`,`LINK_TYPE_`),
| KEY `ACT_IDX_ENT_LNK_REF_SCOPE` (`REF_SCOPE_ID_`,`REF_SCOPE_TYPE_`,`LINK_TYPE_`),
| KEY `ACT_IDX_ENT_LNK_ROOT_SCOPE` (`ROOT_SCOPE_ID_`,`ROOT_SCOPE_TYPE_`,`LINK_TYPE_`),
| KEY `ACT_IDX_ENT_LNK_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`,`LINK_TYPE_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_RU_ENTITYLINK
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_RU_EVENT_SUBSCR
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_RU_EVENT_SUBSCR`;
| CREATE TABLE `ACT_RU_EVENT_SUBSCR` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT NULL,
| `EVENT_TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL,
| `EVENT_NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `ACTIVITY_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `CONFIGURATION_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `CREATED_` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
| `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUB_SCOPE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_DEFINITION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_DEFINITION_KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_TYPE_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `LOCK_TIME_` timestamp(3) NULL DEFAULT NULL,
| `LOCK_OWNER_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '',
| PRIMARY KEY (`ID_`),
| KEY `ACT_IDX_EVENT_SUBSCR_CONFIG_` (`CONFIGURATION_`),
| KEY `ACT_IDX_EVENT_SUBSCR_SCOPEREF_` (`SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_FK_EVENT_EXEC` (`EXECUTION_ID_`),
| CONSTRAINT `ACT_FK_EVENT_EXEC` FOREIGN KEY (`EXECUTION_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_RU_EVENT_SUBSCR
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_RU_EXECUTION
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_RU_EXECUTION`;
| CREATE TABLE `ACT_RU_EXECUTION` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT NULL,
| `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `BUSINESS_KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `PARENT_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUPER_EXEC_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `ROOT_PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `ACT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `IS_ACTIVE_` tinyint DEFAULT NULL,
| `IS_CONCURRENT_` tinyint DEFAULT NULL,
| `IS_SCOPE_` tinyint DEFAULT NULL,
| `IS_EVENT_SCOPE_` tinyint DEFAULT NULL,
| `IS_MI_ROOT_` tinyint DEFAULT NULL,
| `SUSPENSION_STATE_` int DEFAULT NULL,
| `CACHED_ENT_STATE_` int DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '',
| `NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `START_ACT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `START_TIME_` datetime(3) DEFAULT NULL,
| `START_USER_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `LOCK_TIME_` timestamp(3) NULL DEFAULT NULL,
| `LOCK_OWNER_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `IS_COUNT_ENABLED_` tinyint DEFAULT NULL,
| `EVT_SUBSCR_COUNT_` int DEFAULT NULL,
| `TASK_COUNT_` int DEFAULT NULL,
| `JOB_COUNT_` int DEFAULT NULL,
| `TIMER_JOB_COUNT_` int DEFAULT NULL,
| `SUSP_JOB_COUNT_` int DEFAULT NULL,
| `DEADLETTER_JOB_COUNT_` int DEFAULT NULL,
| `EXTERNAL_WORKER_JOB_COUNT_` int DEFAULT NULL,
| `VAR_COUNT_` int DEFAULT NULL,
| `ID_LINK_COUNT_` int DEFAULT NULL,
| `CALLBACK_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `CALLBACK_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `REFERENCE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `REFERENCE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROPAGATED_STAGE_INST_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `BUSINESS_STATUS_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| PRIMARY KEY (`ID_`),
| KEY `ACT_IDX_EXEC_BUSKEY` (`BUSINESS_KEY_`),
| KEY `ACT_IDC_EXEC_ROOT` (`ROOT_PROC_INST_ID_`),
| KEY `ACT_IDX_EXEC_REF_ID_` (`REFERENCE_ID_`),
| KEY `ACT_FK_EXE_PROCINST` (`PROC_INST_ID_`),
| KEY `ACT_FK_EXE_PARENT` (`PARENT_ID_`),
| KEY `ACT_FK_EXE_SUPER` (`SUPER_EXEC_`),
| KEY `ACT_FK_EXE_PROCDEF` (`PROC_DEF_ID_`),
| CONSTRAINT `ACT_FK_EXE_PARENT` FOREIGN KEY (`PARENT_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`) ON DELETE CASCADE,
| CONSTRAINT `ACT_FK_EXE_PROCDEF` FOREIGN KEY (`PROC_DEF_ID_`) REFERENCES `ACT_RE_PROCDEF` (`ID_`),
| CONSTRAINT `ACT_FK_EXE_PROCINST` FOREIGN KEY (`PROC_INST_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`) ON DELETE CASCADE ON UPDATE CASCADE,
| CONSTRAINT `ACT_FK_EXE_SUPER` FOREIGN KEY (`SUPER_EXEC_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`) ON DELETE CASCADE
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_RU_EXECUTION
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_RU_EXTERNAL_JOB
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_RU_EXTERNAL_JOB`;
| CREATE TABLE `ACT_RU_EXTERNAL_JOB` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT NULL,
| `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL,
| `LOCK_EXP_TIME_` timestamp(3) NULL DEFAULT NULL,
| `LOCK_OWNER_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `EXCLUSIVE_` tinyint(1) DEFAULT NULL,
| `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROCESS_INSTANCE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `ELEMENT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `ELEMENT_NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `CORRELATION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `RETRIES_` int DEFAULT NULL,
| `EXCEPTION_STACK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `EXCEPTION_MSG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `DUEDATE_` timestamp(3) NULL DEFAULT NULL,
| `REPEAT_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `HANDLER_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `HANDLER_CFG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `CUSTOM_VALUES_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '',
| PRIMARY KEY (`ID_`),
| KEY `ACT_IDX_EXTERNAL_JOB_EXCEPTION_STACK_ID` (`EXCEPTION_STACK_ID_`),
| KEY `ACT_IDX_EXTERNAL_JOB_CUSTOM_VALUES_ID` (`CUSTOM_VALUES_ID_`),
| KEY `ACT_IDX_EXTERNAL_JOB_CORRELATION_ID` (`CORRELATION_ID_`),
| KEY `ACT_IDX_EJOB_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_EJOB_SUB_SCOPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_EJOB_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`),
| CONSTRAINT `ACT_FK_EXTERNAL_JOB_CUSTOM_VALUES` FOREIGN KEY (`CUSTOM_VALUES_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`),
| CONSTRAINT `ACT_FK_EXTERNAL_JOB_EXCEPTION` FOREIGN KEY (`EXCEPTION_STACK_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_RU_EXTERNAL_JOB
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_RU_HISTORY_JOB
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_RU_HISTORY_JOB`;
| CREATE TABLE `ACT_RU_HISTORY_JOB` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT NULL,
| `LOCK_EXP_TIME_` timestamp(3) NULL DEFAULT NULL,
| `LOCK_OWNER_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `RETRIES_` int DEFAULT NULL,
| `EXCEPTION_STACK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `EXCEPTION_MSG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `HANDLER_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `HANDLER_CFG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `CUSTOM_VALUES_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `ADV_HANDLER_CFG_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL,
| `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '',
| PRIMARY KEY (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_RU_HISTORY_JOB
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_RU_IDENTITYLINK
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_RU_IDENTITYLINK`;
| CREATE TABLE `ACT_RU_IDENTITYLINK` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT NULL,
| `GROUP_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `USER_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| PRIMARY KEY (`ID_`),
| KEY `ACT_IDX_IDENT_LNK_USER` (`USER_ID_`),
| KEY `ACT_IDX_IDENT_LNK_GROUP` (`GROUP_ID_`),
| KEY `ACT_IDX_IDENT_LNK_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_IDENT_LNK_SUB_SCOPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_IDENT_LNK_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_ATHRZ_PROCEDEF` (`PROC_DEF_ID_`),
| KEY `ACT_FK_TSKASS_TASK` (`TASK_ID_`),
| KEY `ACT_FK_IDL_PROCINST` (`PROC_INST_ID_`),
| CONSTRAINT `ACT_FK_ATHRZ_PROCEDEF` FOREIGN KEY (`PROC_DEF_ID_`) REFERENCES `ACT_RE_PROCDEF` (`ID_`),
| CONSTRAINT `ACT_FK_IDL_PROCINST` FOREIGN KEY (`PROC_INST_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`),
| CONSTRAINT `ACT_FK_TSKASS_TASK` FOREIGN KEY (`TASK_ID_`) REFERENCES `ACT_RU_TASK` (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_RU_IDENTITYLINK
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_RU_JOB
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_RU_JOB`;
| CREATE TABLE `ACT_RU_JOB` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT NULL,
| `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL,
| `LOCK_EXP_TIME_` timestamp(3) NULL DEFAULT NULL,
| `LOCK_OWNER_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `EXCLUSIVE_` tinyint(1) DEFAULT NULL,
| `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROCESS_INSTANCE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `ELEMENT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `ELEMENT_NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `CORRELATION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `RETRIES_` int DEFAULT NULL,
| `EXCEPTION_STACK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `EXCEPTION_MSG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `DUEDATE_` timestamp(3) NULL DEFAULT NULL,
| `REPEAT_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `HANDLER_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `HANDLER_CFG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `CUSTOM_VALUES_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '',
| PRIMARY KEY (`ID_`),
| KEY `ACT_IDX_JOB_EXCEPTION_STACK_ID` (`EXCEPTION_STACK_ID_`),
| KEY `ACT_IDX_JOB_CUSTOM_VALUES_ID` (`CUSTOM_VALUES_ID_`),
| KEY `ACT_IDX_JOB_CORRELATION_ID` (`CORRELATION_ID_`),
| KEY `ACT_IDX_JOB_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_JOB_SUB_SCOPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_JOB_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_FK_JOB_EXECUTION` (`EXECUTION_ID_`),
| KEY `ACT_FK_JOB_PROCESS_INSTANCE` (`PROCESS_INSTANCE_ID_`),
| KEY `ACT_FK_JOB_PROC_DEF` (`PROC_DEF_ID_`),
| CONSTRAINT `ACT_FK_JOB_CUSTOM_VALUES` FOREIGN KEY (`CUSTOM_VALUES_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`),
| CONSTRAINT `ACT_FK_JOB_EXCEPTION` FOREIGN KEY (`EXCEPTION_STACK_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`),
| CONSTRAINT `ACT_FK_JOB_EXECUTION` FOREIGN KEY (`EXECUTION_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`),
| CONSTRAINT `ACT_FK_JOB_PROC_DEF` FOREIGN KEY (`PROC_DEF_ID_`) REFERENCES `ACT_RE_PROCDEF` (`ID_`),
| CONSTRAINT `ACT_FK_JOB_PROCESS_INSTANCE` FOREIGN KEY (`PROCESS_INSTANCE_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_RU_JOB
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_RU_SUSPENDED_JOB
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_RU_SUSPENDED_JOB`;
| CREATE TABLE `ACT_RU_SUSPENDED_JOB` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT NULL,
| `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL,
| `EXCLUSIVE_` tinyint(1) DEFAULT NULL,
| `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROCESS_INSTANCE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `ELEMENT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `ELEMENT_NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `CORRELATION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `RETRIES_` int DEFAULT NULL,
| `EXCEPTION_STACK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `EXCEPTION_MSG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `DUEDATE_` timestamp(3) NULL DEFAULT NULL,
| `REPEAT_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `HANDLER_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `HANDLER_CFG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `CUSTOM_VALUES_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '',
| PRIMARY KEY (`ID_`),
| KEY `ACT_IDX_SUSPENDED_JOB_EXCEPTION_STACK_ID` (`EXCEPTION_STACK_ID_`),
| KEY `ACT_IDX_SUSPENDED_JOB_CUSTOM_VALUES_ID` (`CUSTOM_VALUES_ID_`),
| KEY `ACT_IDX_SUSPENDED_JOB_CORRELATION_ID` (`CORRELATION_ID_`),
| KEY `ACT_IDX_SJOB_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_SJOB_SUB_SCOPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_SJOB_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_FK_SUSPENDED_JOB_EXECUTION` (`EXECUTION_ID_`),
| KEY `ACT_FK_SUSPENDED_JOB_PROCESS_INSTANCE` (`PROCESS_INSTANCE_ID_`),
| KEY `ACT_FK_SUSPENDED_JOB_PROC_DEF` (`PROC_DEF_ID_`),
| CONSTRAINT `ACT_FK_SUSPENDED_JOB_CUSTOM_VALUES` FOREIGN KEY (`CUSTOM_VALUES_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`),
| CONSTRAINT `ACT_FK_SUSPENDED_JOB_EXCEPTION` FOREIGN KEY (`EXCEPTION_STACK_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`),
| CONSTRAINT `ACT_FK_SUSPENDED_JOB_EXECUTION` FOREIGN KEY (`EXECUTION_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`),
| CONSTRAINT `ACT_FK_SUSPENDED_JOB_PROC_DEF` FOREIGN KEY (`PROC_DEF_ID_`) REFERENCES `ACT_RE_PROCDEF` (`ID_`),
| CONSTRAINT `ACT_FK_SUSPENDED_JOB_PROCESS_INSTANCE` FOREIGN KEY (`PROCESS_INSTANCE_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_RU_SUSPENDED_JOB
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_RU_TASK
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_RU_TASK`;
| CREATE TABLE `ACT_RU_TASK` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT NULL,
| `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `TASK_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROPAGATED_STAGE_INST_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `STATE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `PARENT_TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `DESCRIPTION_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `TASK_DEF_KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `OWNER_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `ASSIGNEE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `DELEGATION_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PRIORITY_` int DEFAULT NULL,
| `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL,
| `IN_PROGRESS_TIME_` datetime(3) DEFAULT NULL,
| `IN_PROGRESS_STARTED_BY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `CLAIM_TIME_` datetime(3) DEFAULT NULL,
| `CLAIMED_BY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUSPENDED_TIME_` datetime(3) DEFAULT NULL,
| `SUSPENDED_BY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `IN_PROGRESS_DUE_DATE_` datetime(3) DEFAULT NULL,
| `DUE_DATE_` datetime(3) DEFAULT NULL,
| `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUSPENSION_STATE_` int DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '',
| `FORM_KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `IS_COUNT_ENABLED_` tinyint DEFAULT NULL,
| `VAR_COUNT_` int DEFAULT NULL,
| `ID_LINK_COUNT_` int DEFAULT NULL,
| `SUB_TASK_COUNT_` int DEFAULT NULL,
| PRIMARY KEY (`ID_`),
| KEY `ACT_IDX_TASK_CREATE` (`CREATE_TIME_`),
| KEY `ACT_IDX_TASK_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_TASK_SUB_SCOPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_TASK_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_FK_TASK_EXE` (`EXECUTION_ID_`),
| KEY `ACT_FK_TASK_PROCINST` (`PROC_INST_ID_`),
| KEY `ACT_FK_TASK_PROCDEF` (`PROC_DEF_ID_`),
| CONSTRAINT `ACT_FK_TASK_EXE` FOREIGN KEY (`EXECUTION_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`),
| CONSTRAINT `ACT_FK_TASK_PROCDEF` FOREIGN KEY (`PROC_DEF_ID_`) REFERENCES `ACT_RE_PROCDEF` (`ID_`),
| CONSTRAINT `ACT_FK_TASK_PROCINST` FOREIGN KEY (`PROC_INST_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_RU_TASK
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_RU_TIMER_JOB
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_RU_TIMER_JOB`;
| CREATE TABLE `ACT_RU_TIMER_JOB` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT NULL,
| `CATEGORY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL,
| `LOCK_EXP_TIME_` timestamp(3) NULL DEFAULT NULL,
| `LOCK_OWNER_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `EXCLUSIVE_` tinyint(1) DEFAULT NULL,
| `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROCESS_INSTANCE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_DEF_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `ELEMENT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `ELEMENT_NAME_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_DEFINITION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `CORRELATION_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `RETRIES_` int DEFAULT NULL,
| `EXCEPTION_STACK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `EXCEPTION_MSG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `DUEDATE_` timestamp(3) NULL DEFAULT NULL,
| `REPEAT_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `HANDLER_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `HANDLER_CFG_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `CUSTOM_VALUES_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `CREATE_TIME_` timestamp(3) NULL DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '',
| PRIMARY KEY (`ID_`),
| KEY `ACT_IDX_TIMER_JOB_EXCEPTION_STACK_ID` (`EXCEPTION_STACK_ID_`),
| KEY `ACT_IDX_TIMER_JOB_CUSTOM_VALUES_ID` (`CUSTOM_VALUES_ID_`),
| KEY `ACT_IDX_TIMER_JOB_CORRELATION_ID` (`CORRELATION_ID_`),
| KEY `ACT_IDX_TIMER_JOB_DUEDATE` (`DUEDATE_`),
| KEY `ACT_IDX_TJOB_SCOPE` (`SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_TJOB_SUB_SCOPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_TJOB_SCOPE_DEF` (`SCOPE_DEFINITION_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_FK_TIMER_JOB_EXECUTION` (`EXECUTION_ID_`),
| KEY `ACT_FK_TIMER_JOB_PROCESS_INSTANCE` (`PROCESS_INSTANCE_ID_`),
| KEY `ACT_FK_TIMER_JOB_PROC_DEF` (`PROC_DEF_ID_`),
| CONSTRAINT `ACT_FK_TIMER_JOB_CUSTOM_VALUES` FOREIGN KEY (`CUSTOM_VALUES_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`),
| CONSTRAINT `ACT_FK_TIMER_JOB_EXCEPTION` FOREIGN KEY (`EXCEPTION_STACK_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`),
| CONSTRAINT `ACT_FK_TIMER_JOB_EXECUTION` FOREIGN KEY (`EXECUTION_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`),
| CONSTRAINT `ACT_FK_TIMER_JOB_PROC_DEF` FOREIGN KEY (`PROC_DEF_ID_`) REFERENCES `ACT_RE_PROCDEF` (`ID_`),
| CONSTRAINT `ACT_FK_TIMER_JOB_PROCESS_INSTANCE` FOREIGN KEY (`PROCESS_INSTANCE_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_RU_TIMER_JOB
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for ACT_RU_VARIABLE
| -- ----------------------------
| DROP TABLE IF EXISTS `ACT_RU_VARIABLE`;
| CREATE TABLE `ACT_RU_VARIABLE` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT NULL,
| `TYPE_` varchar(255) COLLATE utf8mb3_bin NOT NULL,
| `NAME_` varchar(255) COLLATE utf8mb3_bin NOT NULL,
| `EXECUTION_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `PROC_INST_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `TASK_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUB_SCOPE_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_TYPE_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `BYTEARRAY_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `DOUBLE_` double DEFAULT NULL,
| `LONG_` bigint DEFAULT NULL,
| `TEXT_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `TEXT2_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| `META_INFO_` varchar(4000) COLLATE utf8mb3_bin DEFAULT NULL,
| PRIMARY KEY (`ID_`),
| KEY `ACT_IDX_RU_VAR_SCOPE_ID_TYPE` (`SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_IDX_RU_VAR_SUB_ID_TYPE` (`SUB_SCOPE_ID_`,`SCOPE_TYPE_`),
| KEY `ACT_FK_VAR_BYTEARRAY` (`BYTEARRAY_ID_`),
| KEY `ACT_IDX_VARIABLE_TASK_ID` (`TASK_ID_`),
| KEY `ACT_FK_VAR_EXE` (`EXECUTION_ID_`),
| KEY `ACT_FK_VAR_PROCINST` (`PROC_INST_ID_`),
| CONSTRAINT `ACT_FK_VAR_BYTEARRAY` FOREIGN KEY (`BYTEARRAY_ID_`) REFERENCES `ACT_GE_BYTEARRAY` (`ID_`),
| CONSTRAINT `ACT_FK_VAR_EXE` FOREIGN KEY (`EXECUTION_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`),
| CONSTRAINT `ACT_FK_VAR_PROCINST` FOREIGN KEY (`PROC_INST_ID_`) REFERENCES `ACT_RU_EXECUTION` (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of ACT_RU_VARIABLE
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for eims_equ
| -- ----------------------------
| DROP TABLE IF EXISTS `eims_equ`;
| CREATE TABLE `eims_equ` (
| `equ_id` bigint NOT NULL,
| `equ_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '设备编码',
| `equ_type_id` bigint DEFAULT NULL COMMENT '设备类型',
| `asset_no` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '资产编号',
| `equ_name` varchar(30) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '设备名称\n',
| `model_no` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '型号',
| `made_in` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '制造商',
| `rated_power` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '额定功率',
| `plate_info` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '铭牌信息',
| `purchase_date` date DEFAULT NULL COMMENT '采购日期',
| `status` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '状态',
| `location` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '所在场所',
| `dept_used` bigint DEFAULT NULL COMMENT '使用部门(关联id)',
| `resp_person` bigint DEFAULT NULL COMMENT '责任人(关联id)',
| `contact_phone` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '联系电话',
| `deploy_date` date DEFAULT NULL COMMENT '正式使用日期',
| `trial_date` date DEFAULT NULL COMMENT '开始试用日期',
| `plan_accept_date` date DEFAULT NULL COMMENT '计划验收日期',
| `actual_accept_date` date DEFAULT NULL COMMENT '实际验收日期',
| `import_status` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '导入状态(字典)',
| `inventory_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '盘点标志',
| `inventory_date` date DEFAULT NULL COMMENT '上次盘点日期',
| `service_life` int DEFAULT NULL COMMENT '使用年限',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
| `seller` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '销售商',
| `unit` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '单位',
| `handle_user` bigint DEFAULT NULL COMMENT '经手人',
| `purchase_user` bigint DEFAULT NULL COMMENT '采购人',
| `attach_id` bigint DEFAULT NULL COMMENT '附件',
| `profile` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '资料',
| PRIMARY KEY (`equ_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
| -- ----------------------------
| -- Records of eims_equ
| -- ----------------------------
| BEGIN;
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827130769409, NULL, 1, 'GPA2001G004', '电子镇流器节能灯输入特性分析仪', 'PF9810A', '杭州远方仪器有限公司', NULL, NULL, '2001-04-01', '4', '生产技术部', NULL, NULL, '', NULL, NULL, NULL, NULL, '1', '0', NULL, NULL, NULL, 1, '2025-02-14 09:53:43', 1, '2025-02-14 10:05:00', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827189489665, NULL, 0, 'GPA2002G005', '老化台', '/', '上海兰宝传感器有限公司', NULL, NULL, '2002-03-01', '0', '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '0009-01-01', '0', '0', NULL, NULL, NULL, 1, '2025-02-14 09:53:43', 1, '2025-02-19 09:22:00', NULL, NULL, NULL, NULL, NULL, NULL, '原质量用2021.12月搬至安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827218849793, NULL, NULL, 'GPA2002E006', '低温恒温槽', 'DC-3030', '上海衡平仪器仪表厂', NULL, NULL, '2002-03-01', NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827235627010, NULL, NULL, 'GPA2004H024', '漏电流测试仪', 'TH2686', '常州同恵电子有限公司', NULL, NULL, '2004-05-01', '4', '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827248209921, NULL, NULL, 'GPA2004H026', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, '2004-08-01', NULL, '质量管理部', NULL, NULL, 'Tel:0571-88911457 FAX:0571-88866663', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827260792833, NULL, NULL, 'GPA2005H027', 'LCR数字电桥', 'HF2810', '常州恵友电子科技有限公司', NULL, NULL, '2005-06-01', NULL, '组调三线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827311124481, NULL, NULL, 'GPA2006H028', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, '2006-05-01', NULL, '组调三线', NULL, NULL, 'Tel:0571-88911457 FAX:0571-88866663', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827327901698, NULL, NULL, 'GPA2004H028', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, '2004-08-01', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827344678913, NULL, NULL, 'GPG2010WL003', '电子负载', NULL, NULL, NULL, NULL, NULL, NULL, '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '研发退回2016.08.15车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827357261826, NULL, NULL, 'GPA2007H048', '交流测试仪', 'GDC-005', '上海兰宝传感器有限公司', '0.05', NULL, NULL, NULL, '组调一线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827378233346, NULL, NULL, 'GPA2007H049', '交流测试仪', 'GDC-005', '上海兰宝传感器有限公司', '0.05', NULL, NULL, NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827390816257, NULL, NULL, 'GPG2010WL001', '泰克示波器', 'TDS-1012B', NULL, NULL, NULL, NULL, NULL, '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '研发退回2016.08.15车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827403399169, NULL, NULL, 'GPA2007F052', '泰克示波器', 'TDS220', NULL, NULL, NULL, NULL, NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827415982082, NULL, NULL, 'GPA2007D053', '冲击耐压试验仪', 'SG-255', '苏州泰斯特电子有限公司', NULL, NULL, '2007-07-01', NULL, '质量管理部', NULL, NULL, 'Tel:0512-68413700/3800/3900 FAX:0512-68079795', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827432759298, NULL, NULL, 'GPA2007E001', '高加速度冲击实验系统', 'CL-02/CC-2000', '苏州实验仪器总厂', NULL, NULL, '2007-07-01', NULL, '质量管理部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827449536514, NULL, NULL, 'GPA2007E055', '静电放电发生器', 'ESD-20', '苏州泰斯特电子有限公司', NULL, NULL, '2007-07-01', NULL, '质量管理部', NULL, NULL, 'Tel:0512-68413700/3800/3900 FAX:0512-68079795', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827462119426, NULL, NULL, 'GPA2007E056', '喷水实验仪', 'JPS', '无锡南亚实验设备有限公司', NULL, NULL, '2007-07-01', '4', '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827478896641, NULL, NULL, 'GPA2007E002', '机械振动台', 'J-25A', '苏州实验仪器总厂', '1.3', NULL, '2007-07-01', NULL, '质量管理部', NULL, NULL, '0512-66658086 杨一纯', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827491479554, NULL, NULL, 'GPA2007D058', '群脉冲发生器', 'EFT-4001', '苏州泰斯特电子有限公司', NULL, NULL, '2007-07-01', NULL, '质量管理部', NULL, NULL, 'Tel:0512-68413700/3800/3900 FAX:0512-68079795', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827508256770, NULL, NULL, 'GPA2007G059', '恒温水槽', 'YH-8727', '东莞市常平锐铧电子仪器厂', NULL, NULL, '2007-08-01', NULL, '生产技术部', NULL, NULL, '0769-83811136', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827525033985, NULL, NULL, 'GPA2008E061', '炉温测试仪', 'BESTEMP C6000', 'BESTEMP', '0', NULL, '2008-01-01', NULL, 'SMT', NULL, NULL, '0512-62722650 62721990 FAX:67575070 13951113338', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827579559938, NULL, NULL, 'GPA2008H062', '数字存储示波器', 'UT2042B', '优利德科技(东莞)有限公司', NULL, NULL, '2008-02-01', NULL, '维修线', NULL, NULL, '0769-85723888 FAX:85725888', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827596337154, NULL, NULL, 'GPA2008G063', '频率计数器', '/', '上海兰宝传感器有限公司', NULL, NULL, '2008-04-01', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827608920065, NULL, NULL, 'GPA2008H064', '交流测试仪', 'GDC-005', '上海兰宝传感器有限公司', '0.05', NULL, '2008-05-01', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827621502977, NULL, NULL, 'GPA2008H065', '交流测试仪', 'GDC-005', '上海兰宝传感器有限公司', '0.05', NULL, '2008-05-01', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827634085890, NULL, NULL, 'GPA2008H066', '交流测试仪', 'GDC-005', '上海兰宝传感器有限公司', '0.05', NULL, '2008-05-01', NULL, '维修线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827650863106, NULL, NULL, 'GPA2008H067', '交流测试仪', 'GDC-005', '上海兰宝传感器有限公司', '0.05', NULL, '2008-05-01', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827663446018, NULL, NULL, 'GPA2008H068', '交流测试仪', 'GDC-005', '上海兰宝传感器有限公司', '0.05', NULL, '2008-05-01', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827676028930, NULL, NULL, 'GPA2008H069', '交流测试仪', 'GDC-005', '上海兰宝传感器有限公司', '0.05', NULL, '2008-05-01', NULL, '组调一线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827688611841, NULL, NULL, 'GPA2008WL070', 'LCR数字电桥', 'TH2828', '常州同恵电子有限公司', NULL, NULL, '2008-07-01', NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '原生技赵伟伟使用,2022.07.11转入研发,2024年8月研发走调拨单到生技,实物还在研发存放。');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827697000450, NULL, NULL, 'GPA2008G073', 'DC高精度传感器测试仪', 'GDC-003E', '上海兰宝传感器有限公司', '0.05', NULL, '2008-08-01', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827713777665, NULL, NULL, 'GPA2008G075', 'DC高精度传感器测试仪', 'GDC-003E', '上海兰宝传感器有限公司', '0.05', NULL, '2008-08-01', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '后车间3楼放置区2016.03.05');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827726360577, NULL, NULL, 'GPA2008G076', 'DC高精度传感器测试仪', 'GDC-003E', '上海兰宝传感器有限公司', '0.05', NULL, '2008-08-01', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '后车间3楼放置区2016.03.05');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827738943489, NULL, NULL, 'GPA2008G078', 'DC高精度传感器测试仪', 'GDC-003E', '上海兰宝传感器有限公司', '0.05', NULL, '2008-08-01', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '后车间3楼放置区2016.03.05');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827747332097, NULL, NULL, 'GPA2008H079', '数字存储示波器', 'UT2042B', '优利德科技(东莞)有限公司', NULL, NULL, NULL, NULL, '维修线', NULL, NULL, '0769-85723888 FAX:85725888', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827759915010, NULL, NULL, 'GPA2008H080', '数字存储示波器', 'UT2042B', '优利德科技(东莞)有限公司', NULL, NULL, NULL, NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827768303618, NULL, NULL, 'GPA2008WL017', '数字存储示波器', 'UT2042B', '优利德科技(东莞)有限公司', NULL, NULL, '2008-11-01', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '研发退回2016.08.15车间二楼闲置');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827776692225, NULL, NULL, 'GPA2008H082', '数字存储示波器', 'UT2042B', '优利德科技(东莞)有限公司', NULL, NULL, '2008-11-01', NULL, '组调一线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827789275138, NULL, NULL, 'GPA2008D083', '可程式高低温实验机', 'WCT-1P-D(T)', '上海骤新电子科技有限公司', '7', NULL, '2008-12-22', NULL, '质量管理部', NULL, NULL, '杨士山:15026495550', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827801858049, NULL, NULL, 'GPA2009H084', '程控变频电源', 'AN97002SS', '青岛艾诺智能仪器有限公司', NULL, NULL, '2009-02-04', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '闲置2016.08.15研发回退车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827810246657, NULL, NULL, 'GPA2009G085', '手动液压泵', '700HTP-1', 'FLUKE', NULL, NULL, '2009-06-08', '4', '生产技术部', NULL, NULL, '13764712269 钟杰', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827835412481, NULL, NULL, 'GPA2009G086', '释放阀', '700PRV-1', 'FLUKE', NULL, NULL, '2009-06-08', '4', '生产技术部', NULL, NULL, '13764712269 钟杰', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827847995393, NULL, NULL, 'GPA2009H097', '示波器', 'DS1102E', '北京普源', '0.05', NULL, '0009-09-08', NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '2013年外修中,技术部赵荣有记录.');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827856384001, NULL, NULL, 'GPA2009G098', '示波器', 'TDS-1012B', '美国泰克', '0.03', NULL, '0009-09-08', NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827868966914, NULL, NULL, 'GPA2009G099', '直流电源', 'GPR-30H10D', '台湾固纬实业股份有限公司', '0.55', NULL, '0009-09-08', NULL, '研发中心', NULL, NULL, '0512-66617177 FAX:0512-66617277', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827881549826, NULL, NULL, 'GPA2009F100', '频普分析仪', 'GPS-810', '台湾固纬实业股份有限公司', '0.075', NULL, '0009-09-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827889938433, NULL, NULL, 'GPA2009H101', '数字示波器', 'DS1102E', '北京普源', '0.05', NULL, '0009-12-24', NULL, '质量管理部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827898327042, NULL, NULL, 'GPA2009H102', '高频测试台', 'PL-2000H', '上海兰宝传感器有限公司', NULL, NULL, '0009-11-10', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827906715650, NULL, NULL, 'GPA2009H103', '低频测试台', 'PL-99H', '上海兰宝传感器有限公司', NULL, NULL, '0009-11-10', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827915104258, NULL, NULL, 'GPA2010H104', '数字示波器', 'DS1102E', '北京普源', '0.05', NULL, '0010-01-06', NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827927687169, NULL, NULL, 'GPA2010G105', '张力计', 'DTMB-2', '日电产新宝(上海)国际贸易有限公司', NULL, NULL, '0010-01-22', NULL, '研发中心', NULL, NULL, '021-64400388/64400701/64400702', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827940270082, NULL, NULL, 'GPA2010C106', '逻辑分析仪', '16804A', '美国', '0.775', NULL, '0010-02-02', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '2024.08研发走调拨单到到生技,实物存放还是放在研发中心。');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827948658689, NULL, NULL, 'GPA2010G107', '耐压力测试仪', 'DBD0.8', '德州市鼎鑫液压机具厂', '1.5', NULL, '0010-06-05', NULL, '质量管理部', NULL, NULL, '13406860386 范工', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827957047298, NULL, NULL, 'GPA2006H108', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, '2006-05-01', NULL, '组调二线', NULL, NULL, 'Tel:0571-88911457 FAX:0571-88866663', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827969630209, NULL, NULL, 'GPA2006H109', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, '2006-05-01', NULL, '检包线', NULL, NULL, 'Tel:0571-88911457 FAX:0571-88866663', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827982213122, NULL, NULL, 'GPA2010H110', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217827990601729, NULL, NULL, 'GPA2010H111', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '组调二线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828003184642, NULL, NULL, 'GPA2010H112', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828015767553, NULL, NULL, 'GPA2010H113', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828028350465, NULL, NULL, 'GPA2010H114', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '试产组', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828053516290, NULL, NULL, 'GPA2010H117', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828066099202, NULL, NULL, 'GPA2010H120', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '组调二线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828082876418, NULL, NULL, 'GPA2010H121', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828095459330, NULL, NULL, 'GPA2010H122', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '组调一线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828103847938, NULL, NULL, 'GPA2010H124', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '组调二线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828112236545, NULL, NULL, 'GPA2010H125', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828124819458, NULL, NULL, 'GPA2010H128', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828133208065, NULL, NULL, 'GPA2010H129', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828145790978, NULL, NULL, 'GPA2010H131', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828154179585, NULL, NULL, 'GPA2010H132', '高精度传感器测试仪', 'GDC-003G', '上海华通', '0.05', NULL, '2010-12-03', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828166762497, NULL, NULL, 'GPA2010F133', '张力传感器测试仪', 'ZL-001A', '上海华通', NULL, NULL, '2010-12-03', NULL, '组调三线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828179345409, NULL, NULL, 'GPA2010F134', '张力传感器测试仪', 'ZL-001A', '上海华通', NULL, NULL, '2010-12-03', NULL, '组调三线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828187734018, NULL, NULL, 'GPA2010F135', '张力传感器测试仪', 'ZL-001A', '上海华通', NULL, NULL, '2010-12-03', NULL, '组调三线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828196122625, NULL, NULL, 'GPA2010F136', '张力传感器测试仪', 'ZL-001A', '上海华通', NULL, NULL, '2010-12-03', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828204511234, NULL, NULL, 'GPA2010F137', '张力传感器测试仪', 'ZL-001A', '上海华通', NULL, NULL, '2010-12-03', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828212899841, NULL, NULL, 'GPA2010H138', '高斯计', 'HT201', NULL, NULL, NULL, '2010-12-01', NULL, '质量管理部', NULL, NULL, '021-52370535 13701976246', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828221288450, NULL, NULL, 'GPA2011E139', '电源供应器', 'TCPA300', '美国', NULL, NULL, '2011-01-20', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '闲置2016.08.15研发回退车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828229677058, NULL, NULL, 'GPA2008H140', '光强度测量仪', '93408', 'BEHA', NULL, NULL, '2008-06-01', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828238065665, NULL, NULL, 'GPA2011E141', 'LCR测试仪', '3532-50', '日置(上海)商贸有限公司', NULL, NULL, '2011-02-28', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '原前加工线使用,2022.07.11转入研发');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828246454273, NULL, NULL, 'GPA2011H142', '数字存储示波器', 'UTD2062C', '优利德科技(东莞)有限公司', NULL, NULL, '2011-03-21', NULL, '组调一线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828254842882, NULL, NULL, 'GPA2011H143', '硬度计', 'TH200', '北京时代新天科贸有限公司', NULL, NULL, '2011-03-26', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '2013.05.20找到在陈爱明手上');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828267425794, NULL, NULL, 'GPA2011D144', '高低温交变实验箱', 'LGDJ-060CF3', '上海蓝豹试验设备有限公司', '9', NULL, '2011-03-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, '上海蓝豹试验设备有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828275814401, NULL, NULL, 'GPA2011D145', '高低温交变实验箱', 'LGDJ-060CF3', '上海蓝豹实验设备有限公司', '9', NULL, '2011-03-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828284203010, NULL, NULL, 'GPA2011D146', '高低温交变实验箱', 'LGDJ-450B', '上海蓝豹实验设备有限公司', '9', NULL, '2011-06-03', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828296785921, NULL, NULL, 'GPA2011F147', '激光功率能量计', 'PM100D', '统雷(上海)商贸有限公司', NULL, NULL, '2011-08-01', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '激光刻阻机使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828305174530, NULL, NULL, 'GPA2011H148', '示波器', 'DS1102E', '北京普源', '0.05', NULL, '0011-09-07', NULL, '生产技术部', NULL, NULL, '021-54937484', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828313563137, NULL, NULL, 'GPA2011F149', '泰克示波器', 'TDS2014C', '泰克科技(中国)有限公司', NULL, NULL, '0011-09-08', NULL, '研发中心', NULL, NULL, '021-54937484', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828321951745, NULL, NULL, 'GPA2011F150', '信号发生器', '33220A', '上海咏泽仪器仪表有限公司', NULL, NULL, NULL, NULL, '研发中心', NULL, NULL, '021-54937484', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828330340354, NULL, NULL, 'GPA2011H151', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828342923265, NULL, NULL, 'GPA2011H154', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, '生技仓库二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828355506178, NULL, NULL, 'GPA2011H155', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828363894786, NULL, NULL, 'GPA2011H156', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828372283393, NULL, NULL, 'GPA2011H157', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828380672002, NULL, NULL, 'GPA2011H161', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828393254914, NULL, NULL, 'GPA2011H162', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '组调二线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828401643521, NULL, NULL, 'GPA2011H163', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828410032130, NULL, NULL, 'GPA2011H164', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '维修线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:43', NULL, '2025-02-14 09:53:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828422615042, NULL, NULL, 'GPA2011H165', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828431003649, NULL, NULL, 'GPA2011H169', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828443586562, NULL, NULL, 'GPA2011H171', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '研发退回2016.08.15车间二楼闲置');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828451975169, NULL, NULL, 'GPA2011H172', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '组调二线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828464558082, NULL, NULL, 'GPA2011H173', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828472946689, NULL, NULL, 'GPA2011H174', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828481335297, NULL, NULL, 'GPA2011H178', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828502306817, NULL, NULL, 'GPA2011H179', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828510695425, NULL, NULL, 'GPA2011H180', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', '0.05', NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828519084033, NULL, NULL, 'GPA2012D181', '高低温交变实验箱', 'LGDJ-060CF3', '上海蓝豹实验设备有限公司', '9', NULL, '2012-02-20', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828531666946, NULL, NULL, 'GPA2006H182', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, '2006-05-01', NULL, '组调一线', NULL, NULL, 'Tel:0571-88911457 FAX:0571-88866663', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828540055553, NULL, NULL, 'GPA2006H183', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, '2006-05-01', NULL, '生产技术部', NULL, NULL, 'Tel:0571-88911457 FAX:0571-88866663', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828548444162, NULL, NULL, 'GPA2012F184', '示波器', 'DS4014 100MHZ 4GSA/S', '北京普源', NULL, NULL, '2012-04-12', NULL, '研发中心', NULL, NULL, '上海玛辛电气有限公司021-33776300 杨鎏君13801721735 北京普源精电科技有限公司010-80706688', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828556832769, NULL, NULL, 'GPA2012F185', '示波器', 'DS4014 100MHZ 4GSA/S', '北京普源', NULL, NULL, '2012-04-12', NULL, '研发中心', NULL, NULL, '上海玛辛电气有限公司021-33776300 杨鎏君13801721735 北京普源精电科技有限公司010-80706688', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828565221377, NULL, NULL, 'GPA2012H186', '示波器', 'DS1102E', '北京普源', NULL, NULL, '2012-07-03', NULL, '研发中心', NULL, NULL, '021-65026817-18', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828577804289, NULL, NULL, 'GPA2012H187', '示波器', 'DS1102E', '北京普源', NULL, NULL, '2012-07-03', NULL, '研发中心', NULL, NULL, '021-65026817-18', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828586192897, NULL, NULL, 'GPA2012H188', '示波器', 'DS1102E', '北京普源', NULL, NULL, '2012-07-03', NULL, '研发中心', NULL, NULL, '021-65026817-18', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828598775810, NULL, NULL, 'GPA2012D189', '高低温交变实验箱', 'LGDJ-450B', '上海蓝豹实验设备有限公司', '9', NULL, '2012-07-04', NULL, '封灌间', NULL, NULL, '邱先生:13564558678', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828607164417, NULL, NULL, 'GPA2012F190', '示波器', 'DS4014', '北京普源', NULL, NULL, '2012-07-31', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828615553025, NULL, NULL, 'GPA2012F191', '示波器', 'DS4014', '北京普源', NULL, NULL, '2012-07-31', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828623941634, NULL, NULL, 'GPA2012H192', '数字存储示波器', 'UT2042B', '优利德科技(东莞)有限公司', NULL, NULL, '2012-08-07', NULL, '维修线', NULL, NULL, '上海玛辛电气有限公司021-33776300 杨鎏金13801722735', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828636524546, NULL, NULL, 'GPA2012H193', '示波器', 'DS1102E', '北京普源', NULL, NULL, '2012-08-07', NULL, '安徽兰宝传感', NULL, NULL, '上海玛辛电气有限公司021-33776300 杨鎏金13801722735', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '原许工使用,2024.10.14已转移安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828649107457, NULL, NULL, 'GPA2012C195', '传感器检测仪', NULL, '上海兰宝传感器有限公司', NULL, NULL, '2013-01-04', NULL, '停用,研发', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828661690370, NULL, NULL, 'GPC2001G004', '钻铣镗磨床', 'ZXTM-40', '山东滕州鲁南机床厂', '1.5', NULL, '2001-08-01', NULL, '金工车间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828674273281, NULL, NULL, 'GPC2002G005', '切板机', 'HEDA-801A-02', '/', NULL, NULL, '2002-03-01', NULL, '前加工线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828682661890, NULL, NULL, 'GPC2003E006', '车床', 'C6132A', '广州南方机床厂', '3.5', NULL, '2003-01-01', NULL, '金工车间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828691050498, NULL, NULL, 'GPC2003E007', '车床', 'C6132A', '广州南方机床厂', '3.5', NULL, '2003-01-01', NULL, '金工车间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828703633410, NULL, NULL, 'GPC2004H010', '鼓风干燥箱', 'GZX-9030MBE', '上海博迅实业有限公司', '0.55', NULL, '2004-05-01', NULL, '金工车间', NULL, NULL, '021-56980111 Fax:56303876', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828716216321, NULL, NULL, 'GPC2004H011', '鼓风干燥箱', 'GZX-9030MBE', '上海博迅实业有限公司', '0.55', NULL, '2004-05-01', NULL, '质量管理部', NULL, NULL, '021-56980111 Fax:56303876', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828728799234, NULL, NULL, NULL, NULL, NULL, NULL, '25', NULL, NULL, '4', NULL, NULL, NULL, 'Tel:0755-84190526,84190532', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828745576450, NULL, NULL, 'GPC2006E018', '扎线机', 'Tie-Matic', NULL, NULL, NULL, NULL, '4', '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828758159361, NULL, NULL, 'GPC2006H021', '台式钻攻两用机', 'ZS4112C', '杭州西湖台钻有限公司', '0.75', NULL, '2006-05-01', NULL, '金工车间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828766547970, NULL, NULL, 'GPC2006E023', '升降机', 'SJG1-3.5', '苏州市格安特升降机械有限公司', '2.2', NULL, '2006-05-01', '4', '材料仓库', NULL, NULL, 'Tel:0512-66706638,66702955', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '2021年起停止使用!!');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828779130881, NULL, NULL, 'GPC2006D025', '空压机', 'GA15P-10', '无锡阿特拉斯.科普柯压缩机有限公司', '15', NULL, '2006-06-01', '4', '空压机房', NULL, NULL, '阿特拉斯奉贤办事处 雷工:13636360407', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828787519489, NULL, NULL, 'GPC2006H026', '自动捆包机', '东莞旭田 XT8020', '东莞旭田', NULL, NULL, '2006-07-01', NULL, '成品仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828800102401, NULL, NULL, 'GPC2006F027', '超声波清洗机', NULL, '上海必能信超声有限公司', '1', NULL, '2006-07-01', NULL, '洗衣房', NULL, NULL, 'Tel: 021-57745558 FAX: 021-57745100', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828808491010, NULL, NULL, 'GPC2006G029', '自动切管机', 'JQ-6100', '浙江君权自动化设备总厂', '0.25', NULL, '2006-10-01', NULL, '前加工线', NULL, NULL, 'Tel: 021-54242868 FAX: 021-54242858', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828816879617, NULL, NULL, 'GPC2007G031', '热熔机', '/', '/', NULL, NULL, NULL, '4', '组调二线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828825268225, NULL, NULL, 'GPC2007G032', '真空包装机', 'DZQ400-2D', '上海旭田机械设备有限公司', '3', NULL, '2007-03-01', NULL, '材料仓库', NULL, NULL, '021-62549635,32250926, 32250103', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828837851138, NULL, NULL, 'GPC2005F015', '超音波熔接机', 'EGW-1518', '上海长荣塑胶熔接装备有限公司', '1.4', NULL, '2007-03-01', NULL, '清洗间', NULL, NULL, 'FAX:021-54108108', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828854628354, NULL, NULL, 'GPC2007D034', '数控车床', 'CK6130', '中星数控机床有限公司', '3.5', NULL, '2007-05-01', NULL, '金工车间', NULL, NULL, '江平:13122775532', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828863016961, NULL, NULL, 'GPC2007C037', '全自动绕线机', 'BXCO3', 'TANAC 田中精机有限公司', '1.5', NULL, '2007-09-01', NULL, '前加工线', NULL, NULL, '13615889283 谭晓江', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '013615889283谭工', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828875599874, NULL, NULL, 'GPC2007C038', '半导体激光打标机', 'MYDP-50L', '上海镭天激光设备有限公司', '1.5', NULL, '2007-09-01', NULL, '前加工线', NULL, NULL, 'Tel:021-54265627/8/9-807 FAX:021-54265629', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828883988482, NULL, NULL, 'GPC2007B039', '八温区回流焊', 'NS-800', '劲拓实业有限公司', '64', NULL, '2007-09-01', NULL, 'SMT', NULL, NULL, 'Tel:021-64325281-4 FAX:021-64326846', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828896571393, NULL, NULL, 'GPC2007A040', '贴片机', 'KE-2070M', 'JUKI', '3', NULL, '2007-09-01', NULL, 'SMT', NULL, NULL, '技术服务工程师:代华前\n电话:0512-62858080', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828909154305, NULL, NULL, 'GPC2007F041', '接驳台', 'BC-351C', '劲拓电子设备有限公司', '0.1', NULL, '2007-11-01', NULL, 'SMT', NULL, NULL, 'Tel:021-64325281-4 FAX:021-64326846', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828917542914, NULL, NULL, 'GPC2008H042', '烟雾净化过滤系统', 'QUICK6102', '常州速骏电子有限公司', '0.08', NULL, '2008-01-01', NULL, '前加工线', NULL, NULL, '0519-86225678 FAX:86558599', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828925931521, NULL, NULL, 'GPC2008E044', 'MB1000媒介喷射器', 'MB1000-2', '上海友赛电子科技有限公司', NULL, NULL, '2008-02-01', '4', '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828938514434, NULL, NULL, 'GPC2008A045', '贴片机', 'KE-2070M', 'JUKI', '3', NULL, '2008-04-01', NULL, 'SMT', NULL, NULL, '技术工程师:代华前\n电话:0512-62858080', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828946903042, NULL, NULL, 'GPC2008G046', '接驳台', 'EW-600A', '深圳市亿维天地电子设备有限公司', '0.1', NULL, '2008-05-01', NULL, 'SMT', NULL, NULL, '0755-61146988 FAX:0755-61146996', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828959485953, NULL, NULL, 'GPC2008G047', '接驳台', 'EW-600A', '深圳市亿维天地电子设备有限公司', '0.1', NULL, '2008-05-01', NULL, 'SMT', NULL, NULL, '0755-61146988 FAX:0755-61146996', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828972068866, NULL, NULL, 'GPC2008G048', '超音波手焊接机', 'EGW-2803', '上海长荣塑胶熔接装备有限公司', NULL, NULL, '2008-05-01', '4', '生产技术部', NULL, NULL, 'Tel:021-64041880 FAX:021-54108108', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217828984651778, NULL, NULL, 'GPF2007H003', '冰箱', 'LC-122C', '海尔', NULL, NULL, '2007-09-01', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829001428994, NULL, NULL, 'GPC2008G052', '稳变压器', 'AED-3015HC3C2XL', '壹泰科技有限公司', '15', NULL, '2008-06-01', NULL, '金工车间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829014011905, NULL, NULL, 'GPC2008F053', '端子机', 'HS-2W', '苏州琦辉电子设备厂', '2', NULL, '2008-07-01', NULL, '前加工线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829026594818, NULL, NULL, 'GPC2008E054', '饶线机', 'PNS-112', '日本萨比克株式会社', '0.5', NULL, '2008-07-01', NULL, '安徽兰宝传感', NULL, NULL, '021-6249 5531', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '原吴丽雅使用,2024.03.25转安徽公司。');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829039177730, NULL, NULL, 'GPC2008A055', 'CNC瑞士型自动车床', 'SR-20RⅡ', 'STAR MICRONICSCO.,LTD', '7', NULL, '2008-07-01', NULL, '金工车间', NULL, NULL, '李胜齐:013962420157上海外高桥', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '上海龙泽:13524853004席工');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829047566337, NULL, NULL, 'GPC2008D056', '自动棒材送料机', 'SUPER GS-326', '中义科技机械股份有限公司', '0.7', NULL, '2008-07-01', NULL, '金工车间', NULL, NULL, 'TEL:04-24066970 FAX:042-24069934', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829060149249, NULL, NULL, 'GPC2008D057', '双液自动点胶机', 'DH6000-A', '上海德皓电子有限公司', '4.8', NULL, '2008-07-01', NULL, '封灌间', NULL, NULL, '谢军 总经理:13671600107 021-67681976', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829068537858, NULL, NULL, 'GPC2009E058', '数字式测量投影仪', 'CPJ-3015AZ', '台湾万濠', NULL, NULL, '2009-02-17', NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829076926466, NULL, NULL, 'GPC2009E059', '饶线机', 'PNS-112', '日本萨比克株式会社', '0.5', NULL, '2009-01-15', NULL, '前加工线', NULL, NULL, '021-6249 5531', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829089509378, NULL, NULL, 'GPC2008B060', '剥线机', 'PS9500P', 'Schleuniger', NULL, NULL, '2008-12-10', NULL, '前加工线', NULL, NULL, '夏工:13512100974', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829097897986, NULL, NULL, 'GPC2009C062', '无铅波峰焊炉', 'MS-450', '深圳市劲拓自动化设备有限公司', '34', NULL, '2009-01-08', NULL, '前加工线', NULL, NULL, 'Tel:021-64325281-4 FAX:021-64326846', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829106286594, NULL, NULL, 'GPC2009A063', '激光调阻机', 'ALS300L', 'AUR′EL 意大利', '3.5', NULL, '2009-08-01', NULL, '组调三线', NULL, NULL, 'Tel:390546941124 FAX:390546941660', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829118869506, NULL, NULL, 'GPC2008E066', '送线机', 'PF2200', '瑞士Schleuniger', NULL, NULL, '2008-12-10', NULL, '前加工线', NULL, NULL, '夏工:13512100974', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829131452417, NULL, NULL, 'GPC2008C067', '收线机', 'CC1000', '瑞士Schleuniger', NULL, NULL, '2008-12-10', '4', '生产技术部', NULL, NULL, '夏工:13512100974', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '后车间3楼放置区2016.03.05');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829144035329, NULL, NULL, 'GPC2009A068', '传感器自动检测系统', NULL, '德国', '1.5', NULL, '2009-08-01', NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829156618242, NULL, NULL, 'GPC2010G069', '小型单色移印机', 'ZY-X1', '宁波高新区志远印刷设备制造有限公司', NULL, NULL, '0010-08-25', NULL, '清洗间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829169201154, NULL, NULL, 'GPC2010A070', '精密数控车床', 'BO205', '津上精密机床(浙江)有限公司', '7', NULL, '2010-08-01', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829173395458, NULL, NULL, 'GPC2010C071', '落地型双液点胶机', 'DH7000', '上海普轩电子', '5', NULL, '2010-04-21', NULL, '封灌间', NULL, NULL, '谢军 总经理:13671600107 021-67681976', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829185978370, NULL, NULL, 'GPC2010G072', '散装电容切脚机', 'CO-300AUTO', '台湾', NULL, NULL, '0010-10-28', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829194366978, NULL, NULL, 'GPC2010F073', 'MALCOM锡膏搅拌机', 'SPS-1', '日本', NULL, NULL, '0010-11-02', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829202755585, NULL, NULL, 'GPC2010A074', '自动包装机', 'AB180', '德国', NULL, NULL, '0010-11-12', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829215338498, NULL, NULL, 'GPC2010D076', '数控车床', 'CK6130', '中星数控机床有限公司', '3.5', NULL, '2010-12-28', NULL, '金工车间', NULL, NULL, '江平:13122775532', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829227921409, NULL, NULL, 'GPC2011G078', '缓冲气垫设备', NULL, '上海阁泰包装材料有限公司', NULL, NULL, '2011-02-19', NULL, '成品仓库', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829240504322, NULL, NULL, 'GPC2011F079', '超音波熔接机', 'EGW-1518', '上海长荣塑胶熔接装备有限公司', '1.4', NULL, '2011-05-01', NULL, '组调四线', NULL, NULL, 'FAX:021-54108108', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海友松五金模具厂', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829248892930, NULL, NULL, 'GPC2011B080', 'G5全自动视觉印刷机', 'G5', '东莞市凯格精密机械', '3', NULL, '2011-03-30', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829257281538, NULL, NULL, 'GPC2011E081', '矗鑫全自动上板机', 'SL-3BM', '深圳市矗鑫电子设备有限公司', NULL, NULL, '2011-03-30', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829265670146, NULL, NULL, 'GPC2011G082', '氩弧焊机', 'WSM-500', '上海沪工焊机(集团)有限公司', '3', NULL, '2011-05-20', NULL, '工程中心', NULL, NULL, '上海浙北商贸有限公司 \n59713131 黄建辉15821355881/15900892627', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829278253058, NULL, NULL, 'GPC2011G083', '氩弧电焊机', 'WSM-315', '上海沪工焊机(集团)有限公司', '3', NULL, '2011-05-20', '', '工程中心', NULL, NULL, '上海浙北商贸有限公司 \n59713131 黄建辉15821355881/15900892627', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829290835969, NULL, NULL, 'GPC2011F084', 'UV固化机(大)', NULL, '上海泽楷机电设备有限公司', '6', NULL, '2011-02-15', NULL, '组调四线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829303418882, NULL, NULL, 'GPC2011G085', '单轴式绕线机', 'TCW-01A', '昆荣机械股份有限公司', NULL, NULL, '2011-06-07', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829316001794, NULL, NULL, 'GPC2011C086', '数控铣床', 'NX36', '杭州大天数控铣床有限公司', '7', NULL, '2011-03-11', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829324390402, NULL, NULL, 'GPC2006G008', '储气罐', '1/1.0', '上海申江压力容器有限公司', NULL, NULL, NULL, '4', '空压机房', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829332779009, NULL, NULL, 'GPC2011G088', '冷冻式压缩空气干燥机', 'CK-3.0A', '上海青阳空压气动设备有限公司', '1', NULL, '2011-07-27', '4', '空压机房', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829341167617, NULL, NULL, 'GPC2011F089', '摇臂钻床', 'Z3040X10', '腾州翔宇机床有限公司', '3', NULL, '2011-08-04', NULL, '工程中心', NULL, NULL, '孟小姐:0632-5611000', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829349556225, NULL, NULL, 'GPC2011D090', '激光打标机', 'XJDP-50L', '上海星捷激光设备有限公司', '1.5', NULL, '2011-07-01', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829362139137, NULL, NULL, 'GPC2011G091', '点胶机', 'TP-50', '腾盛流体控制', NULL, NULL, '2011-08-01', NULL, '组调二线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829370527746, NULL, NULL, 'GPC2011F092', '油压机', 'XTM-103四柱两板', '深圳市鑫台铭机械设备有限公司', NULL, NULL, '2011-08-30', '4', '组调二线', NULL, NULL, '0755-89636069 售后服务13380303930', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829378916353, NULL, NULL, 'GPC2011C093', '双液自动点胶机', 'DPS6000', '上海普轩电子科技有限公司', '5', NULL, '2011-05-01', NULL, '封灌间', NULL, NULL, '谢军 总经理:13671600107 021-67681976', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829387304962, NULL, NULL, 'GPC2011C094', '油压闸式剪板机', 'QC11Y-12X4000', '南通大西洋机械有限公司', '9', NULL, '2011-05-01', NULL, '工程中心', NULL, NULL, '0513-88283527 FAX:0513-88283529', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829391499265, NULL, NULL, 'GPC2011B095', '折弯机', 'PR6C 225*3100', '江苏金方圆数控机床有限公司', '17', NULL, '2011-03-01', NULL, '安徽兰宝环保', NULL, NULL, '0514-87873787', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '2023.06.28转到安徽兰宝环保');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829404082178, NULL, NULL, 'GPC2011H096', '搬运小坦克', 'X18+Y18', '上海新世界五金机电有限公司新一五金商厂', '0', NULL, '2011-11-16', NULL, '工程中心', NULL, NULL, '021-636.3281', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829412470785, NULL, NULL, 'GPC2012E097', '剥皮端子压着机', 'SATC-20B', '浙江君权自动化设备有限公司', NULL, NULL, '2012-05-18', NULL, '前加工线', NULL, NULL, '郑方权 13817350699', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829420859393, NULL, NULL, 'GPC2012B099', 'G5全自动视觉印刷机', 'G5', '东莞市凯格精密机械', '3', NULL, '2012-06-10', NULL, 'SMT', NULL, NULL, '吴朋辉 0769-22767281', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829433442306, NULL, NULL, 'GPC2012A100', 'JUKI高速贴片机', 'KE-2070M', '上海西易电子有限公司', '3', NULL, '2012-06-18', NULL, 'SMT', NULL, NULL, '王雨后 021-51509052', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829441830914, NULL, NULL, 'GPC2012A101', 'JUKI高速贴片机', 'KE-2070M', '上海西易电子有限公司', '3', NULL, '2012-06-18', NULL, 'SMT', NULL, NULL, '王雨后 021-51509052', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829450219521, NULL, NULL, 'GPC2012E102', '剥皮端子压着机', 'SATC-20B', '浙江君权自动化设备有限公司', '1', NULL, '2012-06-19', NULL, '前加工线', NULL, NULL, '郑方权 13817350699', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829462802433, NULL, NULL, 'GPC2012H103', '铣刀钻头研磨机', 'MR-F4', '温岭市美日机床有限公司', '0.5', NULL, '2012-06-28', NULL, '生产技术部', NULL, NULL, '陈小姐 0576-89958338', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829471191042, NULL, NULL, 'GPC2012H104', '接驳台', 'BC-351C', '劲拓电子设备有限公司', '0.1', NULL, '2012-06-28', NULL, 'SMT', NULL, NULL, '孙剑0755-29586211', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829483773953, NULL, NULL, 'GPC2012H105', '接驳台', 'BC-351C', '劲拓电子设备有限公司', '0.1', NULL, '2012-06-28', NULL, 'SMT', NULL, NULL, '孙剑0755-29586211', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829487968257, NULL, NULL, 'GPC2012C106', '无铅回流焊', 'AS-800-N', '深圳市劲拓自动化设备有限公司', '67', NULL, '2012-06-28', NULL, 'SMT', NULL, NULL, '孙剑0755-29586211', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829500551169, NULL, NULL, 'GPC2012D108', '直联螺杆式空压机', 'GA37-10', '苏州阿特拉斯', '37', NULL, '2012-07-03', '1', '安徽兰宝', NULL, NULL, '王先生:021-51695913', NULL, NULL, NULL, '2012-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海洲创实业有限公司', NULL, NULL, NULL, NULL, '2022年12月由上海转移至安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829508939778, NULL, NULL, 'GPC2012F109', '超音波熔接机', '20KG', '上海荣臻塑胶焊接设备厂', '1.4', NULL, '2012-07-04', NULL, '清洗间', NULL, NULL, '徐先生:18616180365', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829517328386, NULL, NULL, 'GPC2012G110', '自动绕线扎线机', 'BOQO2000', '东莞市博强自动化设备有限公司', NULL, NULL, '0012-08-08', '4', '前加工线', NULL, NULL, '邹海军0769-86313913', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '闲置');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829525716994, NULL, NULL, 'GPC2012F120', '电动单梁起重机', 'LD10T-10.30MAB', '上海捷矿起重设备有限公司', NULL, NULL, '2012-10-31', NULL, '工程中心', NULL, NULL, '王跃涛 13816957986', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829534105602, NULL, NULL, 'GPC2012H121', '接驳台', 'BC-351C', '劲拓电子设备有限公司', '0.1', NULL, '2012-06-28', NULL, 'SMT', NULL, NULL, '孙剑0755-29586211', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829546688514, NULL, NULL, 'GPD2007H001', '配电柜', 'XL-21', '上海诺定电气成套制造有限公司', NULL, NULL, '2007-10-05', NULL, '制造课', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829559271426, NULL, NULL, 'GPD2012H002', '配电柜', 'XL-21', '上海诺定电气成套制造有限公司', NULL, NULL, '2007-10-05', NULL, '制造课', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829567660034, NULL, NULL, 'GPD2012A003', '电子配电设备', NULL, '上海青浦花桥电力安装有限公司', NULL, NULL, '2012-12-20', NULL, '未知', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829576048642, NULL, NULL, 'GPE1998E001', '工作台(4人)', '/', '温岭市研华自动化设备有限公司', '0', NULL, NULL, NULL, '前加工线', NULL, NULL, '0576-6800069', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829584437250, NULL, NULL, 'GPE1998E002', '工作台', 'SLW-B10', '温岭市研华自动化设备有限公司', '0', NULL, NULL, NULL, '检包线', NULL, NULL, '0576-6800069', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829592825857, NULL, NULL, 'GPE2006H004', '工作台(封灌间)', '/', '温岭市研华自动化设备有限公司', NULL, NULL, NULL, NULL, '封灌间', NULL, NULL, '0576-6800069', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829605408770, NULL, NULL, 'GPE2006H005', '货架(重)', '150*485*200', '/', '0', NULL, NULL, NULL, '材料仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829617991681, NULL, NULL, 'GPE2006G006', '工作台(金工间)', '/', '/', '0', NULL, NULL, NULL, '金工车间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829626380289, NULL, NULL, 'GPE2006H026', '工作台(4人)', '/', '温岭市研华自动化设备有限公司', '0', NULL, NULL, NULL, '前加工线', NULL, NULL, '0576-6800069', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829638963202, NULL, NULL, 'GPE2006H027', '工作台(4人)', '/', '温岭市研华自动化设备有限公司', '0', NULL, NULL, NULL, '前加工线', NULL, NULL, '0576-6800069', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829647351810, NULL, NULL, 'GPE2006E029', '工作台(4人)', '/', '温岭市研华自动化设备有限公司', '0', NULL, NULL, NULL, '前加工线', NULL, NULL, '0576-6800069', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829655740418, NULL, NULL, 'GPE2006H030', '货架(中)', '60*730*200', '/', '0', NULL, NULL, NULL, '成品仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829668323329, NULL, NULL, 'GPE2006H031', '货架(中)', '60*730*800', '/', '0', NULL, NULL, NULL, '成品仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829676711938, NULL, NULL, 'GPE2006H032', '货架(中)', '60*730*800', '/', '0', NULL, NULL, NULL, '成品仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829685100546, NULL, NULL, 'GPE2006H033', '货架(中)', '60*730*800', '/', '0', NULL, NULL, NULL, '成品仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829693489154, NULL, NULL, 'GPE2006H034', '货架(中)', '60*730*800', '/', '0', NULL, NULL, NULL, '成品仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829701877762, NULL, NULL, 'GPE2006H035', '货架(中)', '60*730*800', '/', '0', NULL, NULL, NULL, '材料仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829710266369, NULL, NULL, 'GPE2006H036', '货架(中)', '60*730*800', '/', '0', NULL, NULL, NULL, '材料仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829718654977, NULL, NULL, 'GPE2006H037', '货架(中)', '60*730*200', '/', '0', NULL, NULL, NULL, '材料仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829731237889, NULL, NULL, 'GPE2007E038', '工作台', '/', '/', '0', NULL, NULL, NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829739626497, NULL, NULL, 'GPE2007F039', '贴片机用料车', '/', 'JUKI', '0', NULL, '2007-09-01', NULL, 'SMT', NULL, NULL, '技术服务工程师:代华前\n电话:0512-62858080', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '设备原装配置 A', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829748015105, NULL, NULL, 'GPE2007F040', '贴片机用料车', '/', 'JUKI', '0', NULL, '2007-09-01', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '设备原装配置 B', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829760598018, NULL, NULL, 'GPE2008H041', 'FEEDER存储车', '/', '上海兰宝传感器有限公司', '0', NULL, '2008-02-01', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '自制 A', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829768986626, NULL, NULL, 'GPE2008F042', '贴片机用料车', '/', 'JUKI', '0', NULL, '2008-04-01', NULL, 'SMT', NULL, NULL, '技术服务工程师:代华前\n电话:0512-62858080', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '设备原装配置 C', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829781569537, NULL, NULL, 'GPE2008H043', 'FEEDER存储车', '/', '上海兰宝传感器有限公司', '0', NULL, '2008-06-01', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '自制 B', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829794152450, NULL, NULL, 'GPE2008G044', '光电系列调试线', '/', '上海兰宝传感器有限公司', '0', NULL, '2008-09-01', NULL, '组调四线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829798346754, NULL, NULL, 'GPE2009G045', '货架', '/', '上海钢德仓储设备有限公司', '0', NULL, '2009-01-01', NULL, '成品仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '组', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829810929665, NULL, NULL, 'GPE2009G046', '中型货架', '/', '/', '0', NULL, '2009-04-22', NULL, '材料仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829823512578, NULL, NULL, 'GPE2010H047', 'FEEDER存储车', '/', '苏州德众电子科技有限公司', '0', NULL, '2008-02-01', NULL, 'SMT', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '自制 C', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829831901186, NULL, NULL, 'GPE2011E048', '中型货架', 'L1480*D600*H1600', '上海钢德仓储设备有限公司', '0', NULL, '2011-07-15', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829840289794, NULL, NULL, 'GPE2011B049', 'U型工作台', NULL, '上海闵坚铝业有限公司', '0', NULL, '2011-08-03', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829869649922, NULL, NULL, 'GPE2011F050', '推车', NULL, '上海闵坚铝业有限公司', '0', NULL, '2011-08-03', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829886427137, NULL, NULL, 'GPE2012G051', '贴片机用料车', '/', 'JUKI', '0', NULL, '2012-05-15', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '设备原装配置', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829903204354, NULL, NULL, 'GPE2012H052', '进料器储存车', NULL, '苏州德众电子科技有限公司', NULL, NULL, '2012-09-11', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829915787266, NULL, NULL, 'GPE2012H053', '进料器储存车', NULL, '苏州德众电子科技有限公司', NULL, NULL, '2012-09-11', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829928370177, NULL, NULL, 'GPE2012H054', '进料器储存车', NULL, '苏州德众电子科技有限公司', NULL, NULL, '2012-09-11', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829936758786, NULL, NULL, 'GPE2012H055', '托盘支架', 'KE-2070', '苏州沃瑞特电子科技有限公司', NULL, NULL, '2012-10-17', NULL, 'SMT', NULL, NULL, '0512-62937816', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829949341698, NULL, NULL, 'GPE2013H056(1-3)', '中型货架', 'L1800*W600*H2000托四五层板', '苏州市美德仓储', NULL, NULL, '2013-02-20', NULL, '材料仓库', NULL, NULL, '共3台总价10256.4元', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829961924610, NULL, NULL, 'GPE2013H057', '中型货架', 'L1800*W600*H2000托三五层板', '苏州市美德仓储', NULL, NULL, '2013-02-21', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829974507521, NULL, NULL, 'GPF2006H001', '除湿机', 'DH-890C', '常州市山岛电器有限公司', '1.5', NULL, '2006-06-01', NULL, '封灌间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829987090433, NULL, NULL, 'GPF2006D002', '恒温室', NULL, '温岭市研华自动化设备有限公司', '10', NULL, '2006-06-01', NULL, '封灌间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217829999673346, NULL, NULL, 'GPF2011H004', '除湿机', 'DH-890C', '常州市川岛电器有限公司', '1.5', NULL, '2011-08-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830012256257, NULL, NULL, 'GPF2012A005', '空调设备', NULL, '上海帅乐电器有限公司', NULL, NULL, '2012-12-28', NULL, '未知', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830024839170, NULL, NULL, 'GPF2012B006', '机房系统设备', NULL, '上海天与信息科技有限公司', NULL, NULL, NULL, NULL, '老楼二楼机房', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830037422081, NULL, NULL, 'GPG1999H001', '剪板机', 'Q11-1X720', '浙江温州市东屿轻工机械厂', '0', NULL, '1999-06-01', NULL, '清洗间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830045810690, NULL, NULL, 'GPG2002G002', '手动点胶机', 'JBE1113', '美国飞士能', NULL, NULL, '2002-03-01', NULL, '封灌间', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830054199298, NULL, NULL, 'GPG2005H004', '条形码标签机', 'OF-863P', NULL, NULL, NULL, NULL, NULL, '材料仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830070976514, NULL, NULL, 'GPG2005F005', '标签打印机', 'X-3000+', '台湾ARGOX Information CO.,Ltd', NULL, NULL, NULL, '4', '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830083559425, NULL, NULL, 'GPG2006H006', '手动点胶机', 'WJ118', '/', NULL, NULL, NULL, NULL, '组调三线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830104530946, NULL, NULL, 'GPG2006H007', '手动点胶机', 'WJ118', '/', NULL, NULL, NULL, NULL, '前加工线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830112919554, NULL, NULL, 'GPG2007H010', '标签打印机', 'BTP-6200I', '山东新北洋信息技术股份有限公司', NULL, NULL, NULL, NULL, '制造课', NULL, NULL, '黄建华:13671512530', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830221971458, NULL, NULL, 'GPG2007H011', '显微镜', 'MJ-CP205', '舜宇', NULL, NULL, NULL, NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830242942978, NULL, NULL, 'GPG2007F012', '标签打印机', '110XiIII', 'USA', '0.35', NULL, NULL, '4', '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830255525890, NULL, NULL, 'GPG2007H013', '手动液压车', '/', '/', NULL, NULL, NULL, NULL, '成品仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830263914497, NULL, NULL, 'GPG2007H014', '手动液压车', 'CTY2000', '上海倍力机械制造有限公司', NULL, NULL, '2007-03-01', NULL, '材料仓库', NULL, NULL, '021-58172425/58172431', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830276497410, NULL, NULL, 'GPG2008H016', '标签打印机', 'BTP-6200I', '山东新北洋信息技术股份有限公司', NULL, NULL, NULL, NULL, '研发部', NULL, NULL, '黄建华:13671512530', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '2023.07.04制造课调到研发');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830289080322, NULL, NULL, 'GPG2008H017', '工具车', 'ELA-185MA', '天钢金属(上海)有限公司', '0', NULL, '2008-03-01', NULL, '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830310051842, NULL, NULL, 'GPG2008G018', '数显测微头', '164-161', '日本三丰', NULL, NULL, '2008-03-01', '4', '生产技术部', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830326829057, NULL, NULL, 'GPG2008G019', '防静电承重推车', '/', '上海佰斯特电子工程有限公司', '0', NULL, '2008-04-01', NULL, '材料仓库', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830347800578, NULL, NULL, 'GPG2008H020', 'SMD零件计数器', 'CR-1000', '深圳市创精锐电子有限公司', NULL, NULL, '2008-05-01', NULL, '材料仓库', NULL, NULL, '0755-27699709 27448637', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830364577794, NULL, NULL, 'GPG2009H021', '激光打标机旋转电机', '/', '上海镭天激光设备有限公司', NULL, NULL, '2009-03-09', NULL, '前加工线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830377160706, NULL, NULL, 'GPG2009H022', '整形机', '卧式', '上海山晟贸易有限公司', NULL, NULL, '2009-06-16', NULL, '前加工线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '在生技课放置');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830385549313, NULL, NULL, 'GPG2009H023', '整形机', '立式', '上海山晟贸易有限公司', NULL, NULL, '2009-06-16', NULL, '前加工线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '在生技课放置');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830398132226, NULL, NULL, 'GPG2010G024', 'Tyscope仿真器', 'K9 V0.91', '广州致远电子有限公司', NULL, NULL, '2010-03-01', NULL, '研发中心', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830406520834, NULL, NULL, 'GPG2010H025', '气动剥皮机', 'QH-3F', '苏州琦辉电子设备厂', NULL, NULL, '2010-05-01', NULL, '前加工线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830414909441, NULL, NULL, 'GPG2010H026', '气动剥皮机', 'QH-310', '苏州琦辉电子设备厂', NULL, NULL, '2010-05-01', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830423298049, NULL, NULL, 'GPG2011H027', '气动剥皮机', 'QH-3F', '苏州琦辉电子设备厂', NULL, NULL, '2011-04-26', NULL, '生产技术部', NULL, NULL, '戴工 13295114147 0512-67221217无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830435880961, NULL, NULL, 'GPG2011H028', '标签打印机', 'BTP-6300I', '山东新北洋信息技术股份有限公司', NULL, NULL, NULL, NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830444269569, NULL, NULL, 'GPG2011E029', '焊接平台', '2000*5000', '上海泊刃机械工具有限公司', '0', NULL, '2011-06-29', NULL, '工程中心', NULL, NULL, '021-63503666 商经理', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830456852482, NULL, NULL, 'GPG2011H030', '烟雾净化过滤系统', 'QUICK6102', '常州速骏电子有限公司', NULL, NULL, '2011-05-30', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830465241090, NULL, NULL, 'GPG2011H031', '伺服电机及驱动器', 'LLOST4030/TL-12F', '/', NULL, NULL, '2011-09-15', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830473629697, NULL, NULL, 'GPG2011H032', '自动滴胶机', 'WJ118', '/', NULL, NULL, '2011-04-01', NULL, '前加工线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830482018306, NULL, NULL, 'GPG2006H033', '手动点胶机', 'WJ118', '/', NULL, NULL, NULL, NULL, '组调二线', NULL, NULL, '无', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830494601217, NULL, NULL, 'GPG2011F034', 'UV固化机(小)', 'UP104', '依瓦塔(上海)精密光电有限公司', NULL, NULL, '2011-12-01', NULL, '组调四线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830502989826, NULL, NULL, 'GPG2012F035', 'FEEDER 校正仪', '/', '苏州德众电子科技有限公司', NULL, NULL, '2012-05-11', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830511378434, NULL, NULL, 'GPG2012H036', '全自动SMT高速零件可调计数器', 'FY-610', '上海飞元电子科技有限公司', '0.03', NULL, '2012-07-24', NULL, 'SMT', NULL, NULL, '于经理:021-57816567', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, 'SMT线点料盘点用,2024.06.27转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830523961345, NULL, NULL, 'GPA2013E196', 'LCR电桥测试仪', '3532-50HIOKI', 'HIOKI', NULL, NULL, '2013-01-12', '', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2013-03-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, '使用说明书一份');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830536544258, NULL, NULL, 'GPC2013F001', '卧式金属带锯床', 'GW4028B', '浙江晨龙', NULL, NULL, '2013-07-04', '1', '工程中心', NULL, NULL, '周经理 13816911268', NULL, NULL, NULL, '2013-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海鑫渤机电设备有限公司', NULL, NULL, NULL, NULL, '扭力扳手1把套筒头1个螺丝刀+1把·-1把内六角扳手1套开口扳手12-14 1把17-19 1把随机锯条一条备用1条o型圈2个工具箱1个随机架1套交刘文俊使用说明书1份合格证明书1份保修卡1份交品质部受控2013.07.11');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830549127169, NULL, NULL, 'GPC2013G001', '超声波清洗机', '2Y-1024', '上海早盈精密清洗机械有限公司', NULL, NULL, '2013-07-01', '1', '金工车间', NULL, NULL, '57108232', NULL, NULL, NULL, '2013-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830557515777, NULL, NULL, 'GPC2013E001', '自动焊接机', 'QUICK9320A', '常州快克锡焊股份有限公司', NULL, NULL, '2013-08-09', '1', '组调二线', NULL, NULL, '张晶13611926303 0519 86225678', NULL, NULL, NULL, '2013-08-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '内六角扳手1.5-6MM');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830570098689, NULL, NULL, 'GPA2013F002', '示波器', 'RIGOL DS4014', '北京普源', NULL, NULL, '2013-07-15', '', '研发中心', NULL, NULL, '上海玛辛电气有限公司021-65026817杨鎏金13801722735', NULL, NULL, NULL, '2013-09-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海玛辛电子有限公司', '台', NULL, NULL, NULL, '说明书 光盘 电源线探头*2 数据线DS4A153000499');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830582681602, NULL, NULL, 'GPA2013H003', '示波器', 'RIGOL DS1104Z', '北京普源', NULL, NULL, '2013-07-15', '', '研发中心', NULL, NULL, '上海玛辛电气有限公司021-65026817杨鎏金13801722735', NULL, NULL, NULL, '2013-09-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海玛辛电子有限公司', '台', NULL, NULL, NULL, '说明书 光盘 电源线探头*2 数据线DS1ZA153000771');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830591070209, NULL, NULL, 'GPA2013H004', '示波器', 'RIGOL DS1104Z', '北京普源', NULL, NULL, '2013-07-15', '', '研发中心', NULL, NULL, '上海玛辛电气有限公司021-65026817杨鎏金13801722735', NULL, NULL, NULL, '2013-09-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海玛辛电子有限公司', '台', NULL, NULL, NULL, '说明书 光盘 电源线探头*2 数据线DS1ZA153100780');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830599458817, NULL, NULL, 'GPA2013H005', '示波器', 'RIGOL DS1104Z', '北京普源', NULL, NULL, '2013-07-15', '', '研发中心', NULL, NULL, '上海玛辛电气有限公司021-65026817杨鎏金13801722735', NULL, NULL, NULL, '2013-09-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海玛辛电子有限公司', '台', NULL, NULL, NULL, '说明书 光盘 电源线探头*2 数据线DS1ZA153000727');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830607847425, NULL, NULL, 'GPC2013F006', '半自动堆高机', 'BT00758', '上海罗倍拓工业设备有限公司', NULL, NULL, '2013-08-31', '1', '生产技术部', NULL, NULL, '021-57703699', NULL, NULL, NULL, '2013-09-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海罗倍拓工业设备有限公司', '台', NULL, NULL, NULL, '使用说明书1份 充电电源1个(2023.02.21资材转生技)');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830616236033, NULL, NULL, 'GPC2013H007', '半自动捆包机', 'XT8020(东莞)', '旭田包装机械有限公司', NULL, NULL, '2013-09-02', '1', '新车间2楼仓库', NULL, NULL, '021-66112777', NULL, NULL, NULL, '2013-09-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '旭田包装机械有限公司', '台', NULL, NULL, NULL, '使用说明书1份');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830624624641, NULL, NULL, 'GPE2013H008(1-14)', '中型货架', '一拖一型14组四层空200KG以上', '上海钢德仓储设备有限公司', NULL, NULL, '2013-08-22', '1', '新车间2楼仓库', NULL, NULL, '021-22819389', NULL, NULL, NULL, '2013-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海钢德仓储设备有限公司', '个', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830637207553, NULL, NULL, 'GPE2013H009(1-19)', '中型货架', '一拖二型19组四层空200KG以上', '上海钢德仓储设备有限公司', NULL, NULL, '2013-08-22', '1', '新车间2楼仓库', NULL, NULL, '021-22819389', NULL, NULL, NULL, '2013-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海钢德仓储设备有限公司', '个', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830641401858, NULL, NULL, 'GPE2013H010(1-7)', '中型货架', '一拖三型7组四层空200KG以上', '上海钢德仓储设备有限公司', NULL, NULL, '2013-08-22', '1', '新车间2楼仓库', NULL, NULL, '021-22819389', NULL, NULL, NULL, '2013-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海钢德仓储设备有限公司', '个', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830649790465, NULL, NULL, 'GPE2013H011(1-14)', '轻型货架', '五层空100KG以上', '上海钢德仓储设备有限公司', NULL, NULL, '2013-08-22', '1', '新车间2楼仓库', NULL, NULL, '021-22819389', NULL, NULL, NULL, '2013-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海钢德仓储设备有限公司', '个', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830658179074, NULL, NULL, 'GPC2013H012', '蠕动式点胶机', 'TP-50蠕动式点胶机', '深圳市腾盛工业设备有限公司', NULL, NULL, '2013-08-08', '1', '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2013-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '深圳市腾盛工业设备有限公司', '台', NULL, NULL, NULL, '2024.05.13转移安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830670761986, NULL, NULL, 'GPC2013H013', '蠕动式点胶机', 'TP-50蠕动式点胶机', '深圳市腾盛工业设备有限公司', NULL, NULL, '2013-08-08', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2013-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '深圳市腾盛工业设备有限公司', '台', NULL, NULL, NULL, '操作说明书1份');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830679150594, NULL, NULL, 'GPC2013H014', '除湿机', '常州川岛DH-890C', '上海皖宁精密科学仪器有限公司', NULL, NULL, '2013-08-27', '1', '新车间2楼仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2013-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海皖宁精密科学仪器有限公司', '台', NULL, NULL, NULL, '操作说明书1份');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830683344897, NULL, NULL, 'GPC2013H015', '除湿机', '常州川岛DH-890C', '上海皖宁精密科学仪器有限公司', NULL, NULL, '2013-08-27', '1', '新车间2楼仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2013-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海皖宁精密科学仪器有限公司', '台', NULL, NULL, NULL, '操作说明书1份');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830700122114, NULL, NULL, 'GPC2013H016', '除湿机', '常州川岛DH-890C', '上海皖宁精密科学仪器有限公司', NULL, NULL, '2013-08-27', '1', '新车间2楼仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2013-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海皖宁精密科学仪器有限公司', '台', NULL, NULL, NULL, '操作说明书1份');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830712705025, NULL, NULL, 'GPC2013G017', '多功能机床', '西马特M2-550', '上海富沛森电子商务有限公司', NULL, NULL, '2013-09-23', '1', '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2013-11-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海富沛森电子商务有限公司', '台', NULL, NULL, NULL, '操作说明书1份工具内六角5个开口扳手4个固定顶针2个勾扳手1个精密平口钳1个');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830716899330, NULL, NULL, 'GPE2013G018(1-8)', 'EMC实验室全木工作台', '1000*900*800四台1700*900*800两台1500*400*800两台600*600一台', '上海满宏家具厂', NULL, NULL, '2013-08-02', '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2013-09-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海满宏家具厂', '个', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830725287938, NULL, NULL, 'GPA2013E019', '高低温交变试验箱', 'LGDJ-060CF3', '上海蓝豹试验设备有限公司', NULL, NULL, '2013-08-27', '', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-01-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海蓝豹试验设备有限公司', '台', NULL, NULL, NULL, '2023.12.21转研发');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830737870850, NULL, NULL, 'GPA2013E020', '高低温交变试验箱', 'LGDJ-060CF3', '上海蓝豹试验设备有限公司', NULL, NULL, '2013-08-27', '', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-01-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海蓝豹试验设备有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830746259457, NULL, NULL, 'GPC2013D021', '全自动钢网清洗机', 'K-1800', '深圳凯尔迪光电科技有限公司', NULL, NULL, '2013-07-08', '1', 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2013-12-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '深圳凯尔迪光电科技有限公司', '台', NULL, NULL, NULL, '操作说明书1份');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830758842369, NULL, NULL, 'GPE2013F022(1-2)', '实验室中央工作台', '3750*1500*850', '上海兢美实验室设备有限公司', NULL, NULL, '2013-09-29', '', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2013-10-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海兢美实验室设备有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830767230977, NULL, NULL, 'GPE2013H023(1-12)', '实验室中央工作台 实验凳', '圆皮凳子', '上海兢美实验室设备有限公司', NULL, NULL, '2013-09-29', '', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2013-10-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海兢美实验室设备有限公司', '个', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830779813890, NULL, NULL, 'GPC2014H014', '空气净化器', 'KJT1352A', '亚都', NULL, NULL, NULL, NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830788202497, NULL, NULL, 'GPA2014F001', '示波器', 'RIGOL DS4014(大四通道)', '上海玛辛电子有限公司', NULL, NULL, '2013-12-19', '', '研发中心', NULL, NULL, '上海玛辛电气有限公司021-65026817杨鎏金13801722735', NULL, NULL, NULL, '2014-01-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海玛辛电子有限公司', '台', NULL, NULL, NULL, '说明书 光盘 电源线探头*2 数据线DS4A153000499,2024.11.28故障停用转设备管理,预转安徽使用,原编号GPA2012F131');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830800785410, NULL, NULL, 'GPA2014H015', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, NULL, NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, '0.1-0.6Mpa 0.05级');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830809174018, NULL, NULL, 'GPA2014A001', '智能雷击浪涌发生器', 'EMS61000-5A(1.2/50µs)', '杭州,远方', NULL, NULL, '2013-08-02', '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2013-09-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830817562626, NULL, NULL, 'GPA2014G001', ' 交流变频稳压电源', 'GK10030', '杭州,远方', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830825951233, NULL, NULL, 'GPA2014F001-1', '高压脉冲实验仪', 'EMS255', '杭州,远方', NULL, NULL, NULL, '3', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830838534145, NULL, NULL, 'GPA2014E001', '工频磁场发生器', 'EMS61000-8K-500', '杭州,远方', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830846922753, NULL, NULL, 'GPA2014E002', '周波跌落发生器', 'EMS61000-11K', '杭州,远方', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830851117058, NULL, NULL, 'GPA2014E003', '高可靠交流变频稳压电源', 'GK10150', '杭州,远方', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830859505666, NULL, NULL, 'GPA2014A002', 'GTEM室', '500', '德国,Frankonia', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830872088577, NULL, NULL, 'GPA2014D001', '信号源', 'PMM3010', '意大利,PMM', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, '系统2018年升级被北京信测收回,被替换购买3030-01信号源');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830884671490, NULL, NULL, 'GPG2014E004', '传导抗扰度一体机', 'CDG 6000-75', '德国,SCHLODER', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830893060098, NULL, NULL, 'GPA2014D002', '功率放大器', 'Ophir5124', '美国,Ophir', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830901448705, NULL, NULL, 'GPA2014E004', '定向耦合器', 'PMM1', '意大利,PMM', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830914031617, NULL, NULL, 'GPA2014D003', '功率计', 'PMM6630', '意大利,PMM', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830922420226, NULL, NULL, 'GPA2014D004', '功率计', 'PMM6630', '意大利,PMM', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830930808834, NULL, NULL, 'GPA2014D005', '场强探头', 'EP601', '意大利,PMM', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830943391745, NULL, NULL, 'GPA2014H001', '衰减器', '6dB', '德国,SCHLODER', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830955974657, NULL, NULL, 'GPA2014F001-2', '耦合去耦网络', 'M2-M3', '德国,SCHLODER', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830964363266, NULL, NULL, 'GPA2014G002', '射频线缆', 'Times(EMS)', '美国,Times', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830972751874, NULL, NULL, 'GPA2014D006', '电磁钳', 'EMCL', '德国,SCHLODER', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830981140482, NULL, NULL, 'GPA2014F002', 'CCTV', 'Panasonic WV-CP480', '日本,松下', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830989529090, NULL, NULL, 'GPG2014E001', 'EMS抗扰度测试软件', 'IS', '意大利,xutec', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217830997917697, NULL, NULL, 'GPG2014E002', 'EMI抗扰度测试软件', 'ES', '意大利,xutec', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831006306306, NULL, NULL, 'GPG2014E003', '19寸机柜', '/', '/', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '/', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831018889218, NULL, NULL, 'GPA2013D024', '高分辨率摄像机', 'OP VCS ASSY 27MM', 'JUKI', NULL, NULL, NULL, '1', 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '苏州沃瑞特电子科技有限公司', '套', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831027277826, NULL, NULL, 'GPE2014G026(1-2)', '非标模具货架', 'W3064*D600*H2200 3格4层', '上海诺库物流设备有限公司', NULL, NULL, '2013-11-29', '1', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2014-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海诺库物流设备有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831039860738, NULL, NULL, 'GPC2013C027', '立式注塑机', 'AT-550S(单滑板)', '杭州爱科机械有限公司', '20', NULL, '2014-01-06', '1', '制造课', NULL, NULL, '18621879811吴建伟', NULL, NULL, NULL, '2014-01-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '杭州爱科机械有限公司', '台', NULL, NULL, NULL, '说明书1份');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831048249346, NULL, NULL, 'GPC2013H028', '干燥机', 'WSDJ-25', '上海文穗塑料机械制造有限公司', NULL, NULL, '2014-01-06', '1', '制造课', NULL, NULL, '021-69590683', NULL, NULL, NULL, '2014-01-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海文穗塑料机械制造有限公司', '台', NULL, NULL, NULL, '干燥机2000+脚架600 说明书1份');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831060832258, NULL, NULL, 'GPC2013H029', '吸料机', 'WSAL-700G', '上海文穗塑料机械制造有限公司', NULL, NULL, '2014-01-06', '1', '制造课', NULL, NULL, '021-69590683', NULL, NULL, NULL, '2014-01-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海文穗塑料机械制造有限公司', '台', NULL, NULL, NULL, '吸料机2500+吸料机盒240说明书1份');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831069220865, NULL, NULL, 'GPC2013F030', '风冷式冷水机', 'WSIA-4-P', '上海文穗塑料机械制造有限公司', NULL, NULL, '2014-01-06', '1', '制造课', NULL, NULL, '021-69590683', NULL, NULL, NULL, '2014-01-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海文穗塑料机械制造有限公司', '台', NULL, NULL, NULL, '2023.01.10转移到安徽兰宝。于2024.07.05又转移到上海');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831077609473, NULL, NULL, 'GPC2013G031', '油式模温机', 'WSTO-6-200ºC', '上海文穗塑料机械制造有限公司', NULL, NULL, '2014-01-06', '1', '安徽兰宝', NULL, NULL, '021-69590683', NULL, NULL, NULL, '2014-01-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海文穗塑料机械制造有限公司', '台', NULL, NULL, NULL, '2023.01.10转移到安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831090192386, NULL, NULL, 'GPC2014H002(1-2)', '电焊机', 'WS-315D', '佛山市顺德区雄德业焊接设备有限公司', NULL, NULL, '2014-02-01', '', '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-02-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '佛山市顺德区雄德业焊接设备有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831098580994, NULL, NULL, 'GPE2014H003(1-8)', '双开门工具车', 'LA111806', '上海鑫明实业有限公司', NULL, NULL, '2014-02-01', '1', '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-02-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海鑫明实业有限公司', '个', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831111163906, NULL, NULL, 'GPG2014H004', '液压车', '奥津 NP15-510', '上海禹尧机电科技有限公司', NULL, NULL, '2014-03-01', NULL, '新车间2楼仓库', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海禹尧机电科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831119552513, NULL, NULL, 'GPG2007H032', '微型手动冲床', '文东 1.5T', '文东', NULL, NULL, NULL, NULL, '组调四线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831127941121, NULL, NULL, 'GPA2011H152', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', NULL, NULL, NULL, NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831140524034, NULL, NULL, 'GPA2012H085', '交流调压台', '/', '上海兰宝传感器有限公司', NULL, NULL, NULL, NULL, '组调二线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831153106945, NULL, NULL, 'GPA2006G033', 'DC高精度传感器测试仪', 'GDC-003E', '上海兰宝传感器有限公司', NULL, NULL, NULL, NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '后车间3楼放置区2016.03.05');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831161495554, NULL, NULL, 'GPG2013H001', '多功能塑料薄膜印字(印字)封口机', 'FR-900', '上海申越包装机械制造有限公司', NULL, NULL, NULL, '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831174078466, NULL, NULL, 'GPA2010G108', '耐压力测试仪', 'DBD018', '/', NULL, NULL, NULL, NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831182467073, NULL, NULL, 'GPA2010G109', '强磁场发生仪', '/', '/', NULL, NULL, NULL, NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831190855682, NULL, NULL, 'GPA2013H013', '电脑加速老练试验机', 'DJ3000', NULL, NULL, NULL, NULL, NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831203438594, NULL, NULL, 'GPE1998E005', '插件线工作台', '8m', '温岭市研华自动化设备有限公司', NULL, NULL, NULL, NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831211827202, NULL, NULL, 'GPA2008G077', 'DC高精度传感器测试仪', 'GDC-003E', '上海兰宝传感器有限公司', NULL, NULL, '2008-08-01', NULL, '维修线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831224410114, NULL, NULL, 'GPA2011H166', '高精度传感器测试仪', 'GDC-003G', '上海兰宝传感器有限公司', NULL, NULL, '2011-10-08', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831236993026, NULL, NULL, 'GPC1998H047', '台式钻床', 'Z4112', '/', NULL, NULL, NULL, NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831245381634, NULL, NULL, 'GPC1995H008', '台式钻床', 'Z406', '/', NULL, NULL, NULL, NULL, '清洗间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831253770242, NULL, NULL, 'GPC2011E082', '台式微型冲床', 'JOH075', '台州金鼎电动工具制造有限公公司', NULL, NULL, NULL, NULL, '清洗间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831266353153, NULL, NULL, 'GPC2009C001', '钻铣床', 'XZS 4020', '黄山台钻有限公司', NULL, NULL, NULL, '1', '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831274741761, NULL, NULL, 'GPC2014H004', '自动套丝机', '71T-R2', '杭州宁达套丝机厂', NULL, NULL, NULL, NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831287324674, NULL, NULL, 'GPC2014H005', '等离子切割机', 'LCK-60', '上海通用电焊机', NULL, NULL, NULL, NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831299907585, NULL, NULL, 'GPC2010D057', '自动棒材送料机', '/', '中意机械', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831308296193, NULL, NULL, 'GPC2004H012', '仪表车床', 'C0625/1', '杭州神机机床有限公司', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831320879105, NULL, NULL, 'GPC2006H009', '仪表车床', 'CJ0645', '宁波北仑耀发机械', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831333462018, NULL, NULL, 'GPC2011H008', '仪表车床', 'C0625/1', '杭州神机机床有限公司', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831341850626, NULL, NULL, 'GPC2011H009', '仪表车床', 'C0625/1', '杭州神机机床有限公司', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831354433537, NULL, NULL, 'GPC2011H010', '仪表车床', 'C0625/1', '杭州神机机床有限公司', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831367016450, NULL, NULL, 'GPC2011H011', '仪表车床', '6025C', '宁波北仑耀发机械', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831379599362, NULL, NULL, 'GPC2011H012', '仪表车床', '6025C', '宁波北仑耀发机械', NULL, NULL, NULL, NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '原上海金工间使用,2024.11.07转移安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831392182273, NULL, NULL, 'GPC2011H013', '仪表车床', '6025C', '宁波北仑耀发机械', NULL, NULL, NULL, NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '原上海金工间使用,2024.11.07转移安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831417348098, NULL, NULL, 'GPC2011H014', '仪表车床', 'CJ0645', '宁波北仑耀发机械', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831438319618, NULL, NULL, 'GPC2013H022', '台式攻钻两用机', 'Z34112', '杭州双龙机械有限公司', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831450902529, NULL, NULL, 'GPC2012G096', '冷冻式干燥机', 'HY-50HF', '上海韩岩净化', NULL, NULL, NULL, '1', '空压机房', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831467679746, NULL, NULL, 'GPC2012G095', '储气罐', '2/1.0', '上海申江压力容器有限公司', NULL, NULL, NULL, '1', '空压机房', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831476068354, NULL, NULL, 'GPG2014H005', '手动液压车', '龙工2500kg', '龙工叉车', NULL, NULL, NULL, NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831488651266, NULL, NULL, 'GPF2012H084', '加湿机', 'XH-M2500', '活仕', NULL, NULL, NULL, NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831501234178, NULL, NULL, 'GPC2008H016', '台钻', 'ZHX-13', NULL, NULL, NULL, NULL, NULL, '未知', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831509622785, NULL, NULL, 'GPA2014C001', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', '4', '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, NULL, '站立式操作带脚轮,2021.12月搬至安徽工厂,2022.11.11搬设备再次出现此编号,已搬到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831522205698, NULL, NULL, 'GPA2014C002', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, NULL, '站立式操作,带脚轮');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831538982914, NULL, NULL, 'GPA2014C003', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, NULL, '站立式操作,带脚轮');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831551565826, NULL, NULL, 'GPA2014C004', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, NULL, '站立式操作,带脚轮');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831564148737, NULL, NULL, 'GPA2014C005', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', '1', '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, NULL, '站立式操作带脚轮,2021.12月搬至安徽工厂,2022.11.11搬设备再次出现此编号,已搬到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831572537346, NULL, NULL, 'GPA2014C006', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', '1', '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, NULL, '站立式操作,带脚轮,2021.12月搬至安徽工厂,2022.11.11搬设备再次出现此编号,已搬到安徽,2024.10.14搬迁时候,又出现上海,再次转移安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831585120257, NULL, NULL, 'GPA2014C007', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, NULL, '站立式操作,带脚轮');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831597703169, NULL, NULL, 'GPA2014C008', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, NULL, '站立式操作,带脚轮');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831610286082, NULL, NULL, 'GPA2014C009', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831622868993, NULL, NULL, 'GPA2014C016', '全自动传感器测试仪', 'YL-001A', NULL, NULL, NULL, '2014-04-09', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海华通机电(集团)有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831631257602, NULL, NULL, 'GPA2014E008', '二次元影像测量仪', 'HA-IMI-2010', '鑫准精密测量(仪器)上海有限公司', NULL, NULL, '2014-02-21', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '鑫准精密测量(仪器)上海有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831643840514, NULL, NULL, 'GPA2014E005', '智能型静电发生器', 'EMS61000-2A', '杭州远方', NULL, NULL, '2013-12-31', '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2014-04-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, '设备老化返修2次无果,待报废,报废流程已走');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831656423425, NULL, NULL, 'GPA2014E006', '智能型群脉冲发生器', 'EMS61000-4B', '杭州远方', NULL, NULL, NULL, NULL, 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, '设备老化报废,废旧设备在研发保存,2024.11已走流程');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831664812033, NULL, NULL, 'GPA2014H002', '群脉冲电容耦合夹', 'EFTC-2', '杭州远方', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831677394945, NULL, NULL, 'GPG2014H001', '群脉冲试验环境', '/', '杭州远方', NULL, NULL, NULL, '1', 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831689977857, NULL, NULL, 'GPC2014H024', '钢材机', 'SCG3-355', '雷顿', NULL, NULL, NULL, NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831702560770, NULL, NULL, 'GPA2014H003', '氯气分析仪', 'WT140/NH3', '上海咏驿仪器仪表有限公司', NULL, NULL, '2014-04-28', '1', '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海咏驿仪器仪表有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831715143681, NULL, NULL, 'GPA2014G003', 'TVOC检测仪', 'SNQ000.0-1000PPM', '上海富瞻环保科技有限公司', NULL, NULL, '2014-05-04', '1', '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海富瞻环保科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831723532289, NULL, NULL, 'GPA2014G004', '活塞式压力计', 'XDJB-60T', '西安西德仪器仪表有限公司', NULL, NULL, '2013-12-24', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-05-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '西安西德仪器仪表有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831736115202, NULL, NULL, 'GPA2006H184', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, NULL, NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831748698114, NULL, NULL, 'GPA2006H185', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, NULL, NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831757086721, NULL, NULL, 'GPA2006H186', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, NULL, NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831769669633, NULL, NULL, 'GPC1999H057', '空压机', 'PUMA', NULL, NULL, NULL, NULL, '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831778058242, NULL, NULL, 'GPA2014H004', '数显直流电源', 'GPS-3030D', '固伟电子(苏州)有限公司', NULL, NULL, '2014-05-01', NULL, '组调二线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831790641153, NULL, NULL, 'GPA2011H058', '数显直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, NULL, NULL, '组调三线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831799029762, NULL, NULL, 'GPA2014H018', '邵氏D硬度计', 'TH210', '北京时代淘宝科技发展有限公司', NULL, NULL, '2014-04-23', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '北京时代淘宝科技发展有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831807418370, NULL, NULL, 'GPA2014H005', '数显直流电源', 'GPS-3030D', '固伟电子(苏州)有限公司', NULL, NULL, '2014-05-01', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831815806978, NULL, NULL, 'GPE2014H024', '超净工作台', 'JB-CJ-2FD', '苏州佳宝净化工程设备有限公司', NULL, NULL, '2014-05-21', '4', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-06-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '苏州佳宝净化工程设备有限公司', '台', NULL, NULL, NULL, '2024.11.28研发闲置,已走调拨单,放在金工间闲置设备区域');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831832584193, NULL, NULL, 'GPA2014G005', '风速仪', '6036-BC', '上海浮华检测仪器有限公司', NULL, NULL, '2014-06-09', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-06-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海浮华检测仪器有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831840972802, NULL, NULL, 'GPC2014F001', '电脑剥线机', 'HRG-2803-4', '昆山宏日钢自动化设备有限公司', NULL, NULL, '2014-06-01', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '工具、说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831853555713, NULL, NULL, 'GPC2014G001', '真空包装机', 'VS-600', '上海旭田机械设备有限公司', NULL, NULL, '2014-06-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, '高温布,加热条,起子、说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831866138626, NULL, NULL, 'GPC2014E001', '电脑剥线机', 'ZDBX-6', '嘉兴君权自动化设备有限公司', NULL, NULL, '2014-06-01', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '嘉兴君权自动化设备有限公司', NULL, NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831878721537, NULL, NULL, 'GPA2014H019', '数显扭力起子', 'SH-DMSD50', '上海帝尔电子科技有限公司', NULL, NULL, '2014-06-11', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-06-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海帝尔电子科技有限公司', '台', NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831887110146, NULL, NULL, 'GPA2014H006', '数显直流电源', 'GPS-3030D', '固伟电子(苏州)有限公司', NULL, NULL, '2014-07-01', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831899693058, NULL, NULL, 'GPC2014H025', '胶带切割机', 'ZCUT-870(进口)', '韩国进口', NULL, NULL, '2014-06-01', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2014-07-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海本善电子科技有限公司', NULL, NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831908081665, NULL, NULL, 'GPC2014C001', '立式升降台铣床', 'X5042', '皖南机床厂', NULL, NULL, '2014-07-01', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2014-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海胡润机械设备有限公司', NULL, NULL, NULL, NULL, '随机配件,说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831920664578, NULL, NULL, 'GPC2014E002', '普通车床', 'CA6140B/A', '沈阳第一机床厂', NULL, NULL, '2014-07-01', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海旭深机电设备有限公司', NULL, NULL, NULL, NULL, '2023.06.28转到安徽兰宝环保');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831933247490, NULL, NULL, 'GPA2014H007', '标签机', 'PT-18RZ', '上海岑溪实业有限公司', NULL, NULL, '2014-03-20', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海岑溪实业有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831941636097, NULL, NULL, 'GPA2014H010', '氨气检测仪', 'GT901-NH3', '深圳市科尔诺电子有限公司', NULL, NULL, '2014-08-06', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海何亦仪器仪表有限公司', '台', NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831954219010, NULL, NULL, 'GPA2014G006', '泵吸式臭氧检测报警仪', 'GT901-03', '深圳市科尔诺电子有限公司', NULL, NULL, '2014-08-06', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海何亦仪器仪表有限公司', '台', NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831970996226, NULL, NULL, 'GPA2014H011', '泵吸式甲醛检测仪', 'GT901-CH20', '深圳市科尔诺电子有限公司', NULL, NULL, '2014-08-06', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海何亦仪器仪表有限公司', '台', NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831983579137, NULL, NULL, 'GPC2014H023', '电焊机', 'BX6-160', '凯尔达电焊机', NULL, NULL, NULL, NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217831996162050, NULL, NULL, 'GPA2014F003', '电磁流量计', '10W25-UFGA1AA0A5AA', '恩德斯豪斯德国公司', NULL, NULL, '2014-06-11', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海恩德斯豪斯自动化设备有限公司', '台', NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832008744961, NULL, NULL, 'GPA2014D007', '高低温交变实验箱', 'LGDJ-450B', '上海蓝豹实验设备有限公司', '9', NULL, '2014-07-28', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海象锦国际贸易有限公司', NULL, NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832021327873, NULL, NULL, 'GPA2014D008', '高低温交变试验箱', 'LGDJ-060CF3', '上海蓝豹实验设备有限公司', '9', NULL, '2014-07-28', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海象锦国际贸易有限公司', NULL, NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832029716482, NULL, NULL, 'GPC2014H026', '切管机', 'YS-120', '深圳源尚自动化技术有限公司', NULL, NULL, '2014-08-10', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '深圳源尚自动化技术有限公司', NULL, NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832042299393, NULL, NULL, 'GPC2014C002', '空心线圈绕线机', 'BXC06', '浙江田中精机股份有限公司', NULL, NULL, '2014-08-15', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '浙江田中精机股份有限公司', NULL, NULL, NULL, NULL, '说明书,工具箱等');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832054882306, NULL, NULL, 'GPC2014G002', '油盅移印机', 'SPC-814E', '上海盈晖机械设备有限公司', NULL, NULL, '2014-08-12', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海盈晖机械设备有限公司', NULL, NULL, NULL, NULL, '2024.05.13转移安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832067465218, NULL, NULL, 'GPA2014H020', '电子张力测试仪', 'Y2301', '常州市第一纺织设备有限公司', NULL, NULL, '2014-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '常州市第一纺织设备有限公司', '台', NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832080048129, NULL, NULL, 'GPA2014F004', '同心同轴度仪', 'K1-10', '上海滕明工贸有限公司', NULL, NULL, '2014-08-18', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '美国环球Universal', '台', NULL, NULL, NULL, '表2只,说明书一份');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832088436737, NULL, NULL, 'GPE2014H001', '铝型材工作台', '218cm*60cm*70cm', '上海闽坚铝业有限公司', NULL, NULL, '2014-08-13', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海闽坚铝业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832096825346, NULL, NULL, 'GPE2014H002', '铝型材工作台', '218cm*60cm*70cm', '上海闽坚铝业有限公司', NULL, NULL, '2014-08-13', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海闽坚铝业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832109408257, NULL, NULL, 'GPE2014H004', '铝型材工作台', '180cm*60cm*70cm', '上海闽坚铝业有限公司', NULL, NULL, '2014-08-13', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海闽坚铝业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832121991170, NULL, NULL, 'GPA2014F005', '手持式防爆智能粉尘检测仪', 'JC-1000', '青岛精诚仪器仪表有限公司', NULL, NULL, '2014-08-15', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '青岛精诚仪器仪表有限公司', '台', NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832134574081, NULL, NULL, 'GPF2014H001', '除湿机', 'DH20EB', '格力电器', NULL, NULL, '2014-08-10', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '穆勒电气专营店', '台', NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832147156993, NULL, NULL, 'GPA2014H021', '超声波清洗器', 'SK5200BT', '上海科导超声仪器有限公司', NULL, NULL, '2014-08-10', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海纳诺实业有限公司', '台', NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832155545602, NULL, NULL, 'GPA2014H022', '压力表校验器', 'YJY-600A (0-60Mpa)', '上海良磊仪器仪表销售有限公司', NULL, NULL, '2013-07-01', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2013-06-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海自动化仪表股份有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832168128513, NULL, NULL, 'GPA2014H023', '压力表校验器', 'YJY-600A (0-60Mpa)', '上海良磊仪器仪表销售有限公司', NULL, NULL, '2014-07-01', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海自动化仪表股份有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832180711426, NULL, NULL, 'GPC2014H001', '鼓风数显恒温干燥箱', 'DHG-9140A', '上虞市道墟镇恒幸仪器设备厂', '1kw', NULL, '2014-06-01', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上虞市道墟镇恒幸仪器设备厂', NULL, NULL, NULL, NULL, '原材料库使用,2023.11.15资产转移到安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832193294337, NULL, NULL, 'GPC2014H003', '鼓风数显恒温干燥箱', 'DHG-9140A', '上虞市道墟镇恒幸仪器设备厂', '1kw', NULL, '2014-06-01', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2014-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上虞市道墟镇恒幸仪器设备厂', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832205877250, NULL, NULL, 'GPC2014H027', '502胶点胶机', '410型', '上海帝尔电子科技有限公司', NULL, NULL, '2014-09-19', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海帝尔电子科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832218460161, NULL, NULL, 'GPC2014H028', '502胶点胶机', '410型', '上海帝尔电子科技有限公司', NULL, NULL, '2014-09-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海帝尔电子科技有限公司', NULL, NULL, NULL, NULL, '2024.05.13转移安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832231043074, NULL, NULL, 'GPC2014H029', '精密手动点胶机', 'JBE1113', '上海帝尔电子科技有限公司', NULL, NULL, '2014-09-19', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海帝尔电子科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832239431681, NULL, NULL, 'GPC2014H030', '精密手动点胶机', 'JBE1113', '上海帝尔电子科技有限公司', NULL, NULL, '2014-09-19', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海帝尔电子科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832247820290, NULL, NULL, 'GPE2014F001', '设备台', '/', '上海焱琦实验设备有限公司', NULL, NULL, '2014-07-30', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海焱琦实验设备有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832260403202, NULL, NULL, 'GPE2014H005', '钢瓶柜', '1000*450*1800mm', '上海焱琦实验设备有限公司', NULL, NULL, '2014-07-30', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海焱琦实验设备有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832272986114, NULL, NULL, 'GPE2014G001', '通风柜', '1500*850*2350mm', '上海焱琦实验设备有限公司', NULL, NULL, '2014-07-30', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海焱琦实验设备有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832281374721, NULL, NULL, 'GPA2014G007', '台式六位半数字电流表', '34461A', '上海精测电子有限公司', NULL, NULL, '2014-08-06', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', '台', NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832293957633, NULL, NULL, 'GPA2014H024', '电动比例阀', 'EV-25PCUN16RPF', '武汉格莱特控制阀有限公司', NULL, NULL, '2014-05-19', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '武汉格莱特控制阀有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832302346241, NULL, NULL, 'GPE2014H006(1-3', '推车', '自制(放周转箱)', '上海闽坚铝业有限公司', NULL, NULL, '2014-08-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海闽坚铝业有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832314929153, NULL, NULL, 'GPC2014F002', '标准型半电动推高车', 'BTO5309', '上海罗倍拓工业设备有限公司', NULL, NULL, '2014-09-30', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海罗倍拓工业设备有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832327512066, NULL, NULL, 'GPC2014B001', 'CNC数控铣床', 'TE-850', '厦门大金机械有限公司', '8', NULL, '2014-08-20', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '厦门大金机械有限公司', NULL, NULL, NULL, NULL, '随机配件,说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832335900674, NULL, NULL, 'GPC2014A001', 'CNC精密自动车床', 'BO325-II', '津上精密机床(浙江)有限公司', NULL, NULL, '2014-09-15', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海万助机械有限公司', NULL, NULL, NULL, NULL, '随机配件,说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832352677889, NULL, NULL, 'GPA2014H025', '电子分析天平', 'FA2004', '上海恒平科学仪器有限公司', NULL, NULL, '2014-09-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-10-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '卖仪科学仪器(上海)有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832361066497, NULL, NULL, 'GPC2014E003', '桌面型点胶机', '331型', '上海本善科技有限公司', NULL, NULL, '2014-09-23', NULL, '组调四线', NULL, NULL, NULL, NULL, NULL, NULL, '2014-11-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海本善科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832373649410, NULL, NULL, 'GPC2014B002', '分板机', 'R-S168CS1', '和椿自动化设备(上海)有限公司', NULL, NULL, '2014-08-11', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2014-11-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '苏州昆创电子科技有限公司', '台', NULL, NULL, NULL, '说明书,随机工具,治具一套');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832386232322, NULL, NULL, 'GPA2014H026', 'PH 计', 'STARTER2100/ 3C Pro-F', '奥豪斯', NULL, NULL, '2014-09-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-11-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '卖仪科学仪器(上海)有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832394620930, NULL, NULL, 'GPF2014H002', '高压水枪', '7480G', '上海克美机械设备有限公司', NULL, NULL, '2014-11-25', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-11-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海克美机械设备有限公司', '台', NULL, NULL, NULL, '水管20米');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832411398145, NULL, NULL, 'GPA2014H027', '烟气湿度检测仪', 'testo 635-1', '德国德图', NULL, NULL, '2014-07-21', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海仪博仪器有限公司', '台', NULL, NULL, NULL, '高温湿度探头');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832423981057, NULL, NULL, 'GPA2014H028', '高精度万用表', 'F289C', 'FLUKE(上海)', NULL, NULL, '2014-11-28', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832436563969, NULL, NULL, 'GPA2014G008', '数字存储晶体管特性图示仪', 'WQ4828', '杭州五强电子有限公司', NULL, NULL, '2014-12-02', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '淘宝仪器仪表折扣店', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832440758274, NULL, NULL, 'GPA2014E009', '紫外可见分光光度计', 'UV1800', '岛津', NULL, NULL, '2014-07-21', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, ' 上海纳锘实业有限公司', '台', NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832457535489, NULL, NULL, 'GPC2014B003', 'CNC全自动绕线机', 'MX1804', '浙江田中精机股份有限公司', NULL, NULL, '2014-12-12', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '浙江田中精机股份有限公司', NULL, NULL, NULL, NULL, '治具2套,说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832465924098, NULL, NULL, 'GPA2014G009', '氢空一体机', 'XYAH-300', '上海精密仪器仪表有限公司', NULL, NULL, '2014-08-28', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海精密仪器仪表有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832478507009, NULL, NULL, 'GPA2014A003', '气相色谱质谱联用仪', 'GCMS2010SE', '日本岛津', NULL, NULL, '2014-07-17', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海纳锘实业有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832491089921, NULL, NULL, 'GPA2014C010', '智能传感器测试仪', 'HT-600A', '上海华通机电(集团)有限公司', NULL, NULL, '2014-07-10', '1', '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, '桌面式,数控触摸屏,2024.05.20转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832503672834, NULL, NULL, 'GPA2014C011', '智能传感器测试仪', 'HT-600A', '上海华通机电(集团)有限公司', NULL, NULL, '2014-07-10', '1', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832516255746, NULL, NULL, 'GPA2014C012', '智能传感器测试仪', 'HT-600A', '上海华通机电(集团)有限公司', NULL, NULL, '2014-07-10', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832524644353, NULL, NULL, 'GPA2014C013', '智能传感器测试仪', 'HT-600A', '上海华通机电(集团)有限公司', NULL, NULL, '2014-07-10', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832537227265, NULL, NULL, 'GPA2014C014', '智能传感器测试仪', 'HT-600A', '上海华通机电(集团)有限公司', NULL, NULL, '2014-07-10', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832549810177, NULL, NULL, 'GPA2014C015', '智能传感器测试仪', 'HT-600A', '上海华通机电(集团)有限公司', NULL, NULL, '2014-07-10', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, NULL, '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832562393089, NULL, NULL, 'GPA2014H029', '压力变送器', 'PDS423H-1HS0-A2DN', '重庆川仪自动化股份有限公司', NULL, NULL, '2014-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '重庆博川仪表有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832574976001, NULL, NULL, 'GPA2015H001', '压力变送器', 'V15754-HOEAME/5C2/5C4/Z2C', '上海威尔泰工业自动化股份有限公司', NULL, NULL, '2014-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '天津百菲自动化设备有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832587558914, NULL, NULL, 'GPG2015H001-002', 'BT50刀具车', '564*572*850', '上海众百工业设备有限公司', NULL, NULL, '2015-03-01', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2015-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海众百工业设备有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832600141825, NULL, NULL, 'GPG2015H003-005', '工具车', '564*572*850', '上海众百工业设备有限公司', NULL, NULL, '2015-03-01', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2015-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:44', NULL, '2025-02-14 09:53:44', NULL, '上海众百工业设备有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832612724738, NULL, NULL, 'GPA2015H002', '线缆标志打印机', 'C-210T', '佳能丽标', NULL, NULL, '2015-04-17', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-05-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '淘宝购买', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832625307650, NULL, NULL, 'GPG2015H006', '压线钳', 'ATS-638118100', '昴氏(上海)电子贸易有限公司', NULL, NULL, '2015-01-28', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2015-05-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昴氏(上海)电子贸易有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832633696257, NULL, NULL, 'GPA2015H003', '双气路大气采样器/气体采样袋用采样泵', 'QCS-3000', '上海精密仪器仪表有限公司', NULL, NULL, '2015-01-28', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-05-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海精密仪器仪表有限公司', '套', NULL, NULL, NULL, '双气路大气采样器/气体采样袋用采样泵一套,1650+850=2500');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832646279169, NULL, NULL, 'GPC2015H001', '点胶机控制器', 'AD2000C', '深圳本善电子科技有限公司', NULL, NULL, '2015-03-25', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2015-05-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海本善电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832658862082, NULL, NULL, 'GPA2015E001', '高低温交变试验箱', 'LGDJ-060CF3', '上海蓝豹试验设备有限公司', NULL, NULL, '2015-03-02', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-05-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海蓝豹试验设备有限公司', '台', NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832675639298, NULL, NULL, 'GPA2015H004', 'V槽残厚测量仪', 'CHL-3', '昆山高品精密仪器有限公司', NULL, NULL, '2015-04-20', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2015-05-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山高品精密仪器有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832688222210, NULL, NULL, 'GPA2015H005', '工业实验显微镜', 'SK2100H', '深圳市赛克数码科技开发有限公司', NULL, NULL, '2015-05-22', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2015-06-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '淘宝电商(光仪世界)', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832700805122, NULL, NULL, 'GPG2015H007', '防静电PCB周转车', '/', '无锡明炜电子设备有限公司', NULL, NULL, '2015-05-29', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2015-06-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '无锡明炜电子设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832713388034, NULL, NULL, 'GPG2015H008', '防静电PCB周转车', '/', '无锡明炜电子设备有限公司', NULL, NULL, '2015-06-18', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2015-07-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '无锡明炜电子设备有限公司', NULL, NULL, NULL, NULL, '淘宝购买');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832725970946, NULL, NULL, 'GPG2015H009', '防静电PCB周转车', '/', '无锡明炜电子设备有限公司', NULL, NULL, '2015-06-18', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2015-07-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '无锡明炜电子设备有限公司', NULL, NULL, NULL, NULL, '淘宝购买');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832738553857, NULL, NULL, 'GPG2015H010', '防静电PCB周转车', '/', '无锡明炜电子设备有限公司', NULL, NULL, '2015-06-18', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2015-07-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '无锡明炜电子设备有限公司', NULL, NULL, NULL, NULL, '淘宝购买');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832751136769, NULL, NULL, 'GPG2015H011', '防静电PCB周转车', '/', '无锡明炜电子设备有限公司', NULL, NULL, '2015-06-18', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2015-07-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '无锡明炜电子设备有限公司', NULL, NULL, NULL, NULL, '淘宝购买');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832767913986, NULL, NULL, 'GPA2004H013', '高精度传感器测试仪', 'GDC-003D', '上海兰宝传感器有限公司', NULL, NULL, '2004-01-01', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832780496897, NULL, NULL, 'GPA2004H021', '高精度传感器测试仪', 'GDC-004D', '上海兰宝传感器有限公司', NULL, NULL, '2005-01-01', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, NULL, NULL, NULL, NULL, '后车间3楼放置区2016.03.05');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832788885506, NULL, NULL, 'GPA2015C001', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832801468418, NULL, NULL, 'GPA2015C002', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832818245633, NULL, NULL, 'GPA2015C003', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832835022850, NULL, NULL, 'GPA2015C004', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832847605761, NULL, NULL, 'GPA2015C005', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832860188674, NULL, NULL, 'GPA2015C006', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832872771586, NULL, NULL, 'GPA2015C007', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832881160193, NULL, NULL, 'GPA2015C008', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832893743105, NULL, NULL, 'GPA2015C009', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832910520321, NULL, NULL, 'GPA2015C010', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832923103234, NULL, NULL, 'GPA2015C011', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832931491842, NULL, NULL, 'GPA2015C012', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏,2024.06.27转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832952463361, NULL, NULL, 'GPA2015C013', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832965046274, NULL, NULL, 'GPA2015C014', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832981823490, NULL, NULL, 'GPA2015C015', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217832990212098, NULL, NULL, 'GPA2015C016', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-06-26', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833006989313, NULL, NULL, 'GPA2015C017', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-08-17', '1', '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2015-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏,2024.05.19转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833023766530, NULL, NULL, 'GPA2015C018', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-08-17', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833040543745, NULL, NULL, 'GPA2015C019', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-08-17', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833053126657, NULL, NULL, 'GPA2015C020', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-08-17', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833065709570, NULL, NULL, 'GPA2015C021', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-08-17', '1', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833187344385, NULL, NULL, 'GPA2015C022', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-08-17', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833204121602, NULL, NULL, 'GPA2015C023', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-10-14', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-10-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833254453249, NULL, NULL, 'GPA2015C024', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-10-14', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-10-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833350922242, NULL, NULL, 'GPA2015C025', '智能测试仪', 'SHAL-007A', '乘安物联网科技(上海)有限公司', NULL, NULL, '2015-10-14', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-10-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乘安物联网科技(上海)有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833397059586, NULL, NULL, 'GPA2015C026', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833426419713, NULL, NULL, 'GPA2015C027', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833451585537, NULL, NULL, 'GPA2015C028', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏,2023.12.12转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833485139969, NULL, NULL, 'GPA2015C029', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833506111490, NULL, NULL, 'GPA2015C030', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833531277314, NULL, NULL, 'GPA2015C031', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833552248833, NULL, NULL, 'GPA2015C032', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833577414658, NULL, NULL, 'GPA2015C033', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏,2024.06.27转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833606774785, NULL, NULL, 'GPA2015C034', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833631940609, NULL, NULL, 'GPA2015C035', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-10-22', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833648717826, NULL, NULL, 'GPA2015C036', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833669689345, NULL, NULL, 'GPA2015C037', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏,2024.06.27转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833682272258, NULL, NULL, 'GPA2015C038', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, 'mai', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833703243777, NULL, NULL, 'GPA2015C039', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', '1', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833715826689, NULL, NULL, 'GPA2015C040', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', '1', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833736798210, NULL, NULL, 'GPA2006G038', '多功能传感器测试仪', 'GDC-003E', '上海兰宝传感器有限公司', NULL, NULL, '2006-09-01', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833757769730, NULL, NULL, 'GPA2015E002', '烟气便携式分析仪', 'testo340', '德国德图', NULL, NULL, '2015-07-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-07-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海四捷仪器有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833770352641, NULL, NULL, 'GPA2015H006', '线缆标志打印机', 'C-210T', '佳能丽标', NULL, NULL, '2015-08-05', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '淘宝购买', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833782935553, NULL, NULL, 'GPA2015H007', '线缆标志打印机', 'C-210T', '佳能丽标', NULL, NULL, '2015-08-05', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '淘宝购买', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833795518465, NULL, NULL, 'GPA2015H008', '旋转蒸发仪+循环水真空泵', 'RE-52AA +SHZ-D(Ⅲ)防腐型', '上海垒固仪器有限公司/湖南力辰仪器科技有限公司', NULL, NULL, '2015-08-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海垒固仪器有限公司/湖南力辰仪器科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833808101377, NULL, NULL, 'GPA2015H009', '端子拉力测试仪', 'HF-500', '温州海宝', NULL, NULL, '2015-08-05', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海双旭电子', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833829072898, NULL, NULL, 'GPA2015C041', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833845850114, NULL, NULL, 'GPA2015C042', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833862627329, NULL, NULL, 'GPA2015C043', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833879404545, NULL, NULL, 'GPA2015C044', '智能测试仪', 'SHAL-007A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '桌面式,数控触摸屏');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833891987458, NULL, NULL, 'GPA2015C045', '智能传感器测试仪', 'SHAL-007A', NULL, NULL, NULL, '2015-04-01', '', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '已经完工,待验收', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833908764673, NULL, NULL, 'GPA2015C046', '智能传感器测试仪', 'SHAL-007A', NULL, NULL, NULL, '2015-04-01', '', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '已经完工,待验收', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833925541890, NULL, NULL, 'GPA2015C047', '智能传感器测试仪', 'SHAL-007A', NULL, NULL, NULL, '2015-04-01', '', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '已经完工,待验收', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833942319105, NULL, NULL, 'GPC2015D001', '四轴自动焊接机器人', 'QUICK 9534Y', '常州快克焊锡股份有限公司', NULL, NULL, '2015-06-30', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2015-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '常州快克焊锡股份有限公司', '台', NULL, NULL, NULL, '说明书,辅材一套,2024.10.14已转移安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833959096322, NULL, NULL, 'GPA2015G001', '热解析仪', 'TP-2030', '北京北分天普仪器技术有限公司', NULL, NULL, '2014-08-15', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-09-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '北京北分天普仪器技术有限公司', '台', NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833971679234, NULL, NULL, 'GPC2015D002', '真空含浸机', 'TH-5901', '苏州拓博机械设备有限公司', NULL, NULL, '2015-09-01', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2015-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州拓博机械设备有限公司', NULL, NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217833988456449, NULL, NULL, 'GPA2014H008', '标签机', 'PT-18RZ', '上海岑溪实业有限公司', NULL, NULL, '2014-03-20', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海岑溪实业有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834005233665, NULL, NULL, 'GPA2014H009', '标签机', 'PT-18RZ', '上海岑溪实业有限公司', NULL, NULL, '2014-03-20', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2014-08-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海岑溪实业有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834022010881, NULL, NULL, 'GOB2011C013', '印号机(线缆标志打印机)', 'C-210T', '佳能丽标', NULL, NULL, NULL, NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '/', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834034593794, NULL, NULL, 'GPA2015H010', '便携式(手持式)二硫化碳检测仪', 'GT903-CS2', '深圳市科尔诺电子科技有限公司', NULL, NULL, '2015-10-16', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-11-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '深圳市科尔诺电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834051371010, NULL, NULL, 'GPC2015NH001', '线缆标志打印机', 'C-210T', '佳能丽标', NULL, NULL, '2015-11-29', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '/', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834063953922, NULL, NULL, 'GPC2015NH002', '线缆标志打印机', 'C-210T', '佳能丽标', NULL, NULL, '2015-11-29', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '/', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834101702657, NULL, NULL, 'GPA2015E003', '智能校准仪', 'HT-700A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834118479873, NULL, NULL, 'GPA2015E004', '智能校准仪', 'HT-700A', '云南利通实业集团有限公司', NULL, NULL, '2015-11-01', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834143645697, NULL, NULL, 'GPG2015NL001-006', '中型货架', 'L1480*D600*H1600一拖二', '上海钢德仓储设备有限公司', NULL, NULL, '2015-10-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2015-12-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海钢德仓储设备有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834160422914, NULL, NULL, 'GPC2016NL001', 'EPC660评估板', 'P100 307 epc660 Evaluation Kit US', 'EPC', NULL, NULL, '2015-12-03', '1', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-01-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海丰宝电子信息科技有限公司', '台', NULL, NULL, NULL, '电源线、支架。驱动程序、显示界面。');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834173005825, NULL, NULL, 'GPG2016NL001', '数显表', 'YLM0016-XJK2L0/R0VO', '上海遥领自动化科技有限公司', NULL, NULL, '2016-01-08', '1', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-01-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海遥领自动化科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834185588738, NULL, NULL, 'GPA2016NL001', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2015-12-16', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-01-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834202365954, NULL, NULL, 'GPA2016NL002', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2015-12-16', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-01-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834219143169, NULL, NULL, 'GPA2016NL003', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2015-12-16', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-01-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834235920386, NULL, NULL, 'GPA2016NL004', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2015-12-16', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-01-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834248503298, NULL, NULL, 'GPA2016NL005', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2015-12-16', '1', '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-01-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '2020.01.29调入研发中心韦红光');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834252697601, NULL, NULL, 'GPA2016NL006', 'MiniRAE 3000 便携式VOC检测仪', 'PGM-7320', '美国华瑞', NULL, NULL, '2016-01-21', '1', '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-02-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海誉瑞仪器有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834269474818, NULL, NULL, 'GPA2008G072', 'DC高精度传感器测试仪', 'GDC-003E', '上海华通', NULL, NULL, NULL, '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '后车间3楼放置区2016.03.05');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834282057730, NULL, NULL, 'GPA2002H007', '高精度传感器测试仪', 'GDC-002D', '上海华通', NULL, NULL, NULL, '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '后车间3楼放置区2016.03.05');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834294640642, NULL, NULL, 'GPA2006G031', 'DC高精度传感器测试仪', 'GDC-003E', '上海华通', NULL, NULL, NULL, '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '后车间3楼放置区2016.03.05');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834307223553, NULL, NULL, 'GPA2004H012', '高精度传感器测试仪', 'GDC-003D', '上海华通', NULL, NULL, NULL, '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '后车间3楼放置区2016.03.05');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834315612162, NULL, NULL, 'GPA2012B116', '传感器自动检测仪', 'HL-004C', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834328195074, NULL, NULL, 'GPC2012B114', '传感器数字检测仪', 'HT-500L', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834340777986, NULL, NULL, 'GPC2012B111', '传感器数字检测仪', 'HT-500L', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834349166594, NULL, NULL, 'GPC2012B113', '传感器数字检测仪', 'HT-500L', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834365943809, NULL, NULL, 'GPC2012B118', '传感器自动检测仪', 'HL-004C', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834378526721, NULL, NULL, 'GPC2012B112', '传感器数字检测仪', 'HT-500L', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834391109633, NULL, NULL, 'GPC2012C117', '传感器自动检测仪', 'HL-004C', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834399498242, NULL, NULL, 'GPC2012B119', '传感器自动检测仪', 'HL-004C', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834412081154, NULL, NULL, 'GPC2012C115', '传感器自动检测仪', 'HL-004C', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834420469762, NULL, NULL, 'GPC2009G095', '传感器自动检测仪', 'HL-004C', NULL, NULL, NULL, '2012-09-20', '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2016.01.13研发退回,在二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834433052674, NULL, NULL, 'GPC2016NL002', '鼓风恒温干燥箱', 'DHG101AS-4', '上海创衡仪器有限公司', '1.8kw', NULL, '2016-01-11', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2016-03-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海创衡仪器有限公司', NULL, NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834445635585, NULL, NULL, 'GPC2016NL004', '双液自动灌胶机', 'SEC-3030A', '苏州世椿自动化设备有限公司', NULL, NULL, '2015-12-25', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2016-03-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州世椿自动化设备有限公司', NULL, NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834454024193, NULL, NULL, 'GPG2016NL002', '环链手动葫芦', '3m*3m', '华工起重商贸', NULL, NULL, '2016-03-21', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2016-04-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '华工起重商贸', NULL, NULL, NULL, NULL, '淘宝网购买,河北');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834470801410, NULL, NULL, 'GPA2016NH001', '便携式非甲烷总烃检测仪', 'GT903-NMHC', '深圳市科尔诺电子科技有限公司', NULL, NULL, '2016-01-21', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '深圳市科尔诺电子科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834483384321, NULL, NULL, 'GOG2016NL008', '送锡一体焊台', 'STX-378', '昆山斯泰兴', NULL, NULL, '2016-03-31', '1', '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山市玉山镇斯泰兴工具行', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834495967234, NULL, NULL, 'GOG2016NL009', '送锡一体焊台', 'STX-378', '昆山斯泰兴', NULL, NULL, '2016-03-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山市玉山镇斯泰兴工具行', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834516938754, NULL, NULL, 'GOG2016NL010', '送锡一体焊台', 'STX-378', '昆山斯泰兴', NULL, NULL, '2016-03-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山市玉山镇斯泰兴工具行', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834525327362, NULL, NULL, 'GOG2016NL011', '送锡一体焊台', 'STX-378', '昆山斯泰兴', NULL, NULL, '2016-03-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山市玉山镇斯泰兴工具行', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834533715970, NULL, NULL, 'GOG2016NL007', '除湿机', 'DH890C', '上海皖宁精密科学仪器有限公司', NULL, NULL, '2016-01-06', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皖宁精密科学仪器有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834546298881, NULL, NULL, 'GPC2016NL005', '自动封口机', 'FR-600', '浙江鼎业机械设备有限公司', NULL, NULL, '2016-05-03', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '浙江鼎业机械设备有限公司(淘宝)', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834558881794, NULL, NULL, 'GPC2016NL006', '弹簧分离机', 'HS2306', '深圳市好助手机电设备有限公司', NULL, NULL, '2016-05-02', NULL, '组调四线', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '深圳市好助手机电设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834567270401, NULL, NULL, 'GPG2016NL003', '不锈钢水桶', '1.2m定制', '上海励鉴机械五金加工厂', NULL, NULL, '2016-05-11', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海励鉴机械五金加工厂', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834579853314, NULL, NULL, 'GPG2016NL004', '千分尺手动可调架滑台平台', 'LSP125-LM', '东莞市盛菱精密机械有限公司', NULL, NULL, '2016-05-09', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '东莞市盛菱精密机械有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834592436225, NULL, NULL, 'GPG2016NL005', '千分尺手动可调架滑台平台', 'LSP125-LM', '东莞市盛菱精密机械有限公司', NULL, NULL, '2016-05-09', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '东莞市盛菱精密机械有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834605019138, NULL, NULL, 'GPG2016NL006', '千分尺手动可调架滑台平台', 'LY125-LM', '东莞市盛菱精密机械有限公司', NULL, NULL, '2016-05-09', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '东莞市盛菱精密机械有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834617602049, NULL, NULL, 'GOG2016NL013', '送锡一体焊台', 'STX-378', '昆山斯泰兴', NULL, NULL, '2016-05-23', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山市玉山镇斯泰兴工具行', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834630184961, NULL, NULL, 'GOG2016NL014', '送锡一体焊台', 'STX-378', '昆山斯泰兴', NULL, NULL, '2016-05-23', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-05-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山市玉山镇斯泰兴工具行', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834642767873, NULL, NULL, 'GPA2016NH002', 'PM10/PM2.5光散射激光可吸入粉尘连续测试仪', 'PC-3A', '青岛溯源环保设备有限公司', NULL, NULL, '2016-05-05', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-06-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '青岛溯源环保设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834651156482, NULL, NULL, 'GPC2016NL007', 'PCB收板机', 'YUD-90', '苏州镒瞬自动化设备有限公司', NULL, NULL, '2016-05-02', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2016-06-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州镒瞬自动化设备有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834663739394, NULL, NULL, 'GPG2016NL007', '直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2016-05-27', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-06-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海科库电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834676322305, NULL, NULL, 'GPG2016NL008', '直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2016-05-27', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-06-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海科库电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834684710913, NULL, NULL, 'GPG2016NL009', '直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2016-05-27', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-06-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海科库电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834701488130, NULL, NULL, 'GPG2016NL010', '直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2016-05-27', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-06-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海科库电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834714071041, NULL, NULL, 'GPG2016NL011', '直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2016-05-27', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-06-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海科库电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834726653953, NULL, NULL, 'GPC2016NL008', '油盅移印机', 'TP-100E', '上海盈晖机械设备有限公司', NULL, NULL, '2016-05-23', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2016-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海盈晖机械设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834739236865, NULL, NULL, 'GPC2016NL009', '振动盘', 'DABTS300', '上海奇钢自动化设备有限公司', NULL, NULL, '2016-05-30', '4', '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2016-06-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海奇钢自动化设备有限公司', NULL, NULL, NULL, NULL, '2024.11.28研发闲置,已走调拨单,放在金工间闲置设备区域');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834756014082, NULL, NULL, 'GPC2016NL010', '航拍无人机', '大疆精灵3,4K航拍飞行器', '南京模幻天空航空科技有限公司', NULL, NULL, '2016-06-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-07-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '南京模幻天空航空科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834772791297, NULL, NULL, 'GPC2016NL011', '高速三维锡膏检查系统', 'InSPIre-510a', '厦门思泰克光电科技有限公司', NULL, NULL, '2016-07-01', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2016-08-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海晨善电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834781179906, NULL, NULL, 'GPC2016NL012', '自动线材对折贴标机', 'JB-6130', '东莞市锦标自动化设备有限公司', NULL, NULL, '2016-06-30', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2016-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '东莞市锦标自动化设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834793762817, NULL, NULL, 'GPA2016NL007', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-05-19', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834810540034, NULL, NULL, 'GPA2016NL008', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-05-19', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, '2021.01.29调入研发中心韦红光');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834827317249, NULL, NULL, 'GPA2016NL009', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-05-19', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834839900162, NULL, NULL, 'GPA2016NL010', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-05-19', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834852483074, NULL, NULL, 'GPA2016NL011', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-05-19', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834865065986, NULL, NULL, 'GPC2016NL014', '高精密点胶控制器(点胶机)', 'D-260', '深圳市轴心自控技术有限公司', NULL, NULL, '2016-06-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '深圳市轴心自控技术有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834877648897, NULL, NULL, 'GPC2016NL013', '除湿机', 'DH-890C', '上海皖宁精密科学仪器有限公司', NULL, NULL, '2016-07-20', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皖宁精密科学仪器有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834886037505, NULL, NULL, 'GPG2016NL012', '直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2016-07-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海科库电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834902814721, NULL, NULL, 'GPG2016NL013', '直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2016-07-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海科库电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834911203330, NULL, NULL, 'GPG2016NL014', '直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2016-07-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海科库电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834923786241, NULL, NULL, 'GPC2016NL015', '接驳台', '600MM长度 带灯架', '昆山松航电子科技有限公司', NULL, NULL, '2016-07-25', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山松航电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834936369154, NULL, NULL, 'GPA2016NL012', '端子拉力测试仪(仪表)', 'HF-500', '温州海宝仪器有限公司', NULL, NULL, '2016-08-17', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海双旭电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834948952066, NULL, NULL, 'GPG2016NL015', 'U型线物料/产品车', '定制规格', '上海汇登铝材有限公司', NULL, NULL, '2016-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海汇登铝材有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834965729281, NULL, NULL, 'GPG2016NL016', 'U型线物料/产品车', '定制规格', '上海汇登铝材有限公司', NULL, NULL, '2016-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海汇登铝材有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834982506497, NULL, NULL, 'GPG2016NL017', 'U型线物料/产品车', '定制规格', '上海汇登铝材有限公司', NULL, NULL, '2016-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海汇登铝材有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217834990895105, NULL, NULL, 'GPG2016NL018', 'U型线物料/产品车', '定制规格', '上海汇登铝材有限公司', NULL, NULL, '2016-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海汇登铝材有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835007672322, NULL, NULL, 'GPA2016NL013', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-07-14', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835016060929, NULL, NULL, 'GPA2016NL014', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-07-14', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835037032450, NULL, NULL, 'GPA2016NL015', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-07-14', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-09-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835049615361, NULL, NULL, 'GPA2016NL016', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-08-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-10-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835062198274, NULL, NULL, 'GPA2016NL017', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-08-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-10-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835074781185, NULL, NULL, 'GPA2016NL018', '交直流智能测试仪', 'HT-800A', '云南利通实业集团有限公司', NULL, NULL, '2016-08-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2016-10-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '云南利通实业集团有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835087364098, NULL, NULL, 'GPA2016NH003', 'MiniRAE 3000 便携式VOC检测仪', 'PGM-7320', '美国华瑞', NULL, NULL, '2016-09-20', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-10-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海誉瑞仪器有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835108335617, NULL, NULL, 'GPC2016NL016', '双线LED焊接机', 'DCH-400 LED', '台州浩然机械制造有限公司', NULL, NULL, '2016-08-01', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2016-11-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '台州浩然机械制造有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835120918529, NULL, NULL, 'GPC2016NL017', '超音波塑胶熔接机', 'ATGS-3510e 16款 網絡版', '东和超音波机械设备有限公司', '1.8kw', NULL, '2016-09-26', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2016-11-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山周市东和超音波机械设备经营部', '台', NULL, NULL, NULL, '工具,说明书,赠送模具3套,psf 2套,psk 1套,2023年9月14由上海公司转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835141890050, NULL, NULL, 'GPC2016NL018', '防潮柜', 'HSC435D', '上海和呈仪器制造有限公司', NULL, NULL, '2015-11-26', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海和呈仪器制造有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835154472962, NULL, NULL, 'GPC2016NL019', '防潮柜', 'HSC1436BD', '上海和呈仪器制造有限公司', NULL, NULL, '2015-09-06', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海和呈仪器制造有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835171250177, NULL, NULL, 'GPD2016NL001', '三层发料小推车', '三层钢制仓库车可拆装RCA-0317 700*480*900', '上海燮晨贸易有限公司', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海燮晨贸易有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835188027394, NULL, NULL, 'GPD2016NL002', '仓库平台登高梯', '可拆刹车1.8米', '真棒货架(淘宝)', NULL, NULL, '2016-11-21', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '真棒货架(淘宝)', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835204804610, NULL, NULL, 'GPD2016NL003', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835225776130, NULL, NULL, 'GPD2016NL004', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835246747650, NULL, NULL, 'GPD2016NL005', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835259330561, NULL, NULL, 'GPD2016NL006', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835276107778, NULL, NULL, 'GPD2016NL007', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835292884994, NULL, NULL, 'GPD2016NL008', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835305467906, NULL, NULL, 'GPD2016NL009', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835326439426, NULL, NULL, 'GPD2016NL010', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835339022337, NULL, NULL, 'GPD2016NL011', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835359993857, NULL, NULL, 'GPD2016NL012', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835380965377, NULL, NULL, 'GPD2016NL013', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835401936897, NULL, NULL, 'GPD2016NL014', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835418714113, NULL, NULL, 'GPD2016NL015', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835435491330, NULL, NULL, 'GPD2016NL016', '货架', '定制规格', '励鉴五金', NULL, NULL, '2016-12-01', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '励鉴五金', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835448074241, NULL, NULL, 'GPD2016NL017', '升降台', '标准黑 宽680*深590mm', '乐歌人体工学科技股份有限公司', NULL, NULL, '2016-10-25', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '乐歌人体工学科技股份有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835473240066, NULL, NULL, 'GPD2016NL018', '货梯', '可装卸1.5m高踏板梯', '上海成洁货架有限公司', NULL, NULL, '2016-12-08', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2016-12-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海成洁货架有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835490017281, NULL, NULL, 'GPC2016NH001', '烘箱', 'DHG-9248A', '上海精宏', NULL, NULL, '2016-12-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海全脉科学仪器有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835506794498, NULL, NULL, 'GPC2016NH002', '离心机', 'HC-3515', '中科中佳', NULL, NULL, '2016-12-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海全脉科学仪器有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835523571713, NULL, NULL, 'GPC2016NH003', '酸度计', 'PHS-3C', '上海雷磁', NULL, NULL, '2016-12-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海全脉科学仪器有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835544543234, NULL, NULL, 'GPC2016NH004', '分析天平', 'FR4202CN', '奥豪斯', NULL, NULL, '2016-12-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海全脉科学仪器有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835578097665, NULL, NULL, 'GPC2016NH005', '磁力搅拌器', 'H01-1D', '上海梅颖浦', NULL, NULL, '2016-12-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海全脉科学仪器有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835594874881, NULL, NULL, 'GPC2016NH006', '机械搅拌器', 'D2004W', '上海梅颖浦', NULL, NULL, '2016-12-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海全脉科学仪器有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835611652098, NULL, NULL, 'GPC2016NH007', '机械搅拌器', 'D2004W', '上海梅颖浦', NULL, NULL, '2016-12-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海全脉科学仪器有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835628429313, NULL, NULL, 'GPC2016NH008', '机械搅拌器', 'D2004W', '上海梅颖浦', NULL, NULL, '2016-12-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海全脉科学仪器有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835653595137, NULL, NULL, 'GPC2016NH009', '机械搅拌器', 'D2004W', '上海梅颖浦', NULL, NULL, '2016-12-13', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海全脉科学仪器有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835670372354, NULL, NULL, 'GPC2012D122', '双工位成型机 (低压注塑机)', 'LPMS800M', '东莞市天赛塑胶机械有限公司', NULL, NULL, NULL, NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '东莞市天赛塑胶机械有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835682955266, NULL, NULL, 'GPD2017NL001', '钢网架', '铝型材定制规格', '上海皇闽铝业', NULL, NULL, '2016-12-15', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皇闽铝业', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835695538178, NULL, NULL, 'GPD2017NL002', '钢网架', '铝型材定制规格', '上海皇闽铝业', NULL, NULL, '2016-12-15', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2016-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皇闽铝业', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835712315393, NULL, NULL, 'GPG2017NL001', '送锡一体焊台', 'STX-378', '昆山斯泰兴', NULL, NULL, '2017-01-02', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山市玉山镇斯泰兴工具行', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835724898305, NULL, NULL, 'GPG2017NL002', '送锡一体焊台', 'STX-378', '昆山斯泰兴', NULL, NULL, '2017-01-02', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-01-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山市玉山镇斯泰兴工具行', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835745869826, NULL, NULL, 'GPA2017NL001', '高速三维锡膏检查系统', 'InSPIre-510a', '厦门思泰克光电科技有限公司', NULL, NULL, '2016-12-07', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2017-02-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海晨善电子科技有限公司', '台', NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835758452737, NULL, NULL, 'GPC2017NL001', '烤胶固化炉', 'SAR-430MH', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2016-12-21', NULL, '试产组', NULL, NULL, NULL, NULL, NULL, NULL, '2017-02-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山众泰兴自动化设备有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835779424257, NULL, NULL, 'GPC2017NL003', 'G9 全自动视觉印刷机', 'G9', '东莞市凯格精密机械有限公司', NULL, NULL, '2016-12-22', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2017-03-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '东莞市凯格精密机械有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835792007170, NULL, NULL, 'GPC2017NL002', '自动盘料机', '621升级测漏点料机', '深圳市嘉睿轩自动化设备有限公司', NULL, NULL, '2017-03-06', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2017-03-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '深圳市嘉睿轩自动化设备有限公司', '台', NULL, NULL, NULL, 'SMT线点料盘点用,2024.06.27转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835808784385, NULL, NULL, 'GPC2017NL004', '轨道(接驳台)', '120cm (含灯架)', '昆山松航电子科技有限公司', NULL, NULL, '2016-12-17', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2017-03-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山松航电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835821367297, NULL, NULL, 'GPC2017NL005', '轨道(接驳台)', '60cm (含灯架)', '昆山松航电子科技有限公司', NULL, NULL, '2016-12-17', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2017-03-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山松航电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835838144513, NULL, NULL, 'GPA2017NL002', '线缆长度测量仪', '英国BST英标BS33韩国优仪CLM33', '电线电缆长度测试线缆长度测量仪', NULL, NULL, '2017-03-02', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2017-03-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '珠海市凯美特电子有限公司', '台', NULL, NULL, NULL, '说明书等');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835854921730, NULL, NULL, 'GPC2017NL006', '点胶机(500行程)', 'VS-500', '深圳市轴心自控技术有限公司', NULL, NULL, '2016-12-23', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-03-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '深圳市轴心自控技术有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835871698946, NULL, NULL, 'GPC2017NL007', '超音波塑胶熔接机', 'ATGL-2025e 16款网络型', '东和超音波机械设备有限公司', '2.5kw', NULL, '2017-02-23', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山周市東和超音波機械設備', '台', NULL, NULL, NULL, '工具箱,说明书,赠送模具4套pte两套,ptf两套,2023年9月14由上海公司转到安徽公司。');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835884281858, NULL, NULL, 'GPG2017NL003', '数显直流电源', 'GPS-2303C 多通道', '苏州固纬电子', NULL, NULL, '2017-03-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海瀚醭电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835922030593, NULL, NULL, 'GPG2017NL004', '数显直流电源', 'GPS-2303C 多通道', '苏州固纬电子', NULL, NULL, '2017-03-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海瀚醭电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835934613505, NULL, NULL, 'GPG2017NL005', '数显直流电源', 'GPS-2303C 多通道', '苏州固纬电子', NULL, NULL, '2017-03-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海瀚醭电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835951390722, NULL, NULL, 'GPG2017NL006', '数显直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2017-03-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海瀚醭电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835968167938, NULL, NULL, 'GPG2017NL007', '数显直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2017-03-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海瀚醭电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835980750849, NULL, NULL, 'GPG2017NL008', '数显直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2017-03-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海瀚醭电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217835993333761, NULL, NULL, 'GPG2017NL009', '数显直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2017-03-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海瀚醭电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836010110978, NULL, NULL, 'GPG2017NL010', '数显直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2017-03-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海瀚醭电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836026888194, NULL, NULL, 'GPG2017NL012', '研华工控机', 'IPC-610/701VG', '研华', NULL, NULL, '2017-02-23', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '千脉', '台', NULL, NULL, NULL, 'i3工控机,用于PSK远近光测试机');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836043665410, NULL, NULL, 'GPC2017NL008', 'HITACHI(日立)喷码机', 'PXR-D440W', 'HITACHI(日立)', NULL, NULL, '2017-04-11', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2017-05-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '辉泉机电设备(上海)有限公司', '台', NULL, NULL, NULL, '说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836060442626, NULL, NULL, 'GPC2017NH001', 'VOCS有机物在线检测系统', '非标定制品', '杭州泽天科技有限公司', NULL, NULL, '2017-03-20', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-05-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '杭州泽天科技有限公司', '台', NULL, NULL, NULL, '说明书和合格证提供给环保研发部');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836077219841, NULL, NULL, 'GPA2017NH001', '爱华噪音计', 'AWA5636-2', '苏州罗伯克测控技术有限公司', NULL, NULL, '2017-04-26', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-06-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州罗伯克测控技术有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836093997058, NULL, NULL, 'GPA2004H027', '耐电压测试仪', 'WB2670A', '杭州威博测量控制技术研究院', NULL, NULL, NULL, '4', '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, NULL, '台', NULL, NULL, NULL, '2017.07.05找到,入账,生技二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836110774274, NULL, NULL, 'GPA2017NL003', '示波器', 'DS4054(不带逻辑通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836123357186, NULL, NULL, 'GPA2017NL004', '示波器', 'DS1104Z(小四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836135940098, NULL, NULL, 'GPA2017NL005', '示波器', 'DS1104Z(小四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836148523010, NULL, NULL, 'GPA2017NL006', '示波器', 'DS1104Z(小四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836169494530, NULL, NULL, 'GPA2017NL007', '示波器', 'DS1104Z(小四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836182077442, NULL, NULL, 'GPA2017NL008', '示波器', 'DS1104Z(小四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836194660354, NULL, NULL, 'GPA2017NL009', '示波器', 'DS1104Z(小四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836211437569, NULL, NULL, 'GPA2017NL010', '示波器', 'DS1104Z(小四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836232409089, NULL, NULL, 'GPA2017NL011', '示波器', 'DS1104Z(小四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836244992001, NULL, NULL, 'GPA2017NL012', '示波器', 'DS4014 (大四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836257574913, NULL, NULL, 'GPA2017NL013', '示波器', 'DS4014 (大四通道)', '北京普源', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海玛辛电气有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836270157826, NULL, NULL, 'GPC2017NL010', '超高压清洗水泵', '熊猫PM-611A', '上海大洋洲机械有限公司', NULL, NULL, '2017-07-03', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海大洋洲机械有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836282740738, NULL, NULL, 'GPA2017NH002', '爱华噪音计', 'AWA5636-2', '苏州罗伯克测控技术有限公司', NULL, NULL, '2016-06-02', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州罗伯克测控技术有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836303712258, NULL, NULL, 'GPA2017NL014', '示波器 (周立功)', 'ZD2024PLUS', '燊容电子科技(上海)有限公司', NULL, NULL, '2017-04-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '燊容电子科技(上海)有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836316295170, NULL, NULL, 'GPA2017NL015', '示波器 (周立功)', 'ZD2024PLUS', '燊容电子科技(上海)有限公司', NULL, NULL, '2017-03-10', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-08-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '燊容电子科技(上海)有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836328878081, NULL, NULL, 'GPC2017NL011', '气动剥线机', '3F型', '深圳市永鑫科自动化设备有限公司', NULL, NULL, '2017-07-28', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2017-08-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '深圳市永鑫科自动化设备有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836345655298, NULL, NULL, 'GPC2017NL012', '自动封口机', 'FR-600', '浙江鼎业机械设备有限公司', NULL, NULL, '2017-07-28', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2017-08-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '浙江鼎业机械设备有限公司(淘宝)', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836358238210, NULL, NULL, 'GPC2017NL013', '标签剥离机', 'BSC-B120', 'BSC (淘宝购买)', NULL, NULL, '2017-07-12', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2017-08-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, 'BSC (淘宝购买)', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836375015426, NULL, NULL, 'GPC2017NL014', 'PCB全自动收板机', 'x-550-l', '苏州鑫鼎创自动化科技有限公司', NULL, NULL, '2017-07-27', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2017-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州鑫鼎创自动化科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836395986945, NULL, NULL, 'GPC2017NL015', '线缆标志打印机', 'C-210T', '佳能丽标', NULL, NULL, '2017-08-17', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-08-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海锐亿数码科技有限公司', '台', NULL, NULL, NULL, '有2017.08.22识别标记,未编号,');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836412764161, NULL, NULL, 'GPC2017NL016', '欧瑞康测试机台', '41-918 V4 + 41-989 V3', '苏州沃德科电子有限公司', NULL, NULL, '2017-05-22', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2017-09-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州沃德科电子有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836433735681, NULL, NULL, 'GPC2017NL017', '接驳台', '600MM 带灯架', '苏州锦月明电子有限公司', NULL, NULL, '2017-08-01', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2017-09-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州锦月明电子有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836454707201, NULL, NULL, 'GPG2017NL013', '稳压电源', 'UTP3303/30V 3A', '苏州安必信电子有限公司', NULL, NULL, '2017-09-04', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2017-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州安必信电子有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836479873025, NULL, NULL, 'GPG2017NL014', '稳压电源', 'UTP3303/30V 3A', '苏州安必信电子有限公司', NULL, NULL, '2017-09-04', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2017-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州安必信电子有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836500844546, NULL, NULL, 'GPG2017NL015', '稳压电源', 'UTP3303/30V 3A', '苏州安必信电子有限公司', NULL, NULL, '2017-09-04', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2017-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '苏州安必信电子有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836521816065, NULL, NULL, 'GPG2017NL016', '数显直流电源', 'GPS-3030DD', '苏州固纬电子', NULL, NULL, '2017-09-06', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2017-09-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '燊容电子科技(上海)有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836542787585, NULL, NULL, 'GPA2017NL016', '光功率计', 'JC3110', '上海聚测信息科技有限公司', NULL, NULL, '2017-09-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-09-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海聚测信息科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836559564801, NULL, NULL, 'GPG2017NL017', '工控机', 'ipc-610/701vg/i3-2120/4g/1t/dvd/km 六串口', '上海圣界电子科技有限公司', NULL, NULL, '2017-10-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-10-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海圣界电子科技有限公司', '台', NULL, NULL, NULL, 'i3工控机,用于PSK距离标定测试机');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836580536321, NULL, NULL, 'GOA2017NL214', '工业用一体电脑', 'SS-150GY(规格:15寸 )', '广州索速电子科技有限公司', NULL, NULL, '2017-09-01', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-10-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, '用于车间进门人脸识别系统');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836605702145, NULL, NULL, 'GPC2017NL018', 'PSK远光测试机', '远光测试机MARO-STF', '昆山沃椿电子科技有限公司', NULL, NULL, '2016-12-02', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-11-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山沃椿电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836618285057, NULL, NULL, 'GPC2017NL019', 'PSK标定机设备', '标定机设备MARO-STD', '昆山沃椿电子科技有限公司', NULL, NULL, '2017-06-23', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-11-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山沃椿电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836639256577, NULL, NULL, 'GPC2017NL020', 'PSK近光测试机', '近光测试机MARO-STP', '昆山沃椿电子科技有限公司', NULL, NULL, '2016-12-02', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-11-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '昆山沃椿电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836651839489, NULL, NULL, 'GPC2017NL021', '线缆标志打印机', 'C-210T', '佳能丽标', NULL, NULL, '2017-11-10', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-11-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海锐亿数码科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836668616705, NULL, NULL, 'GPD2017NL003', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836685393921, NULL, NULL, 'GPD2017NL004', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836697976833, NULL, NULL, 'GPD2017NL005', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836714754050, NULL, NULL, 'GPD2017NL006', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836727336961, NULL, NULL, 'GPD2017NL007', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836744114178, NULL, NULL, 'GPD2017NL008', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836756697089, NULL, NULL, 'GPD2017NL009', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836773474306, NULL, NULL, 'GPD2017NL010', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836790251522, NULL, NULL, 'GPD2017NL011', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:45', NULL, '2025-02-14 09:53:45', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836807028738, NULL, NULL, 'GPD2017NL012', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836823805954, NULL, NULL, 'GPD2017NL013', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836840583169, NULL, NULL, 'GPD2017NL014', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836857360386, NULL, NULL, 'GPD2017NL015', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836874137602, NULL, NULL, 'GPD2017NL016', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836890914818, NULL, NULL, 'GPD2017NL017', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836903497730, NULL, NULL, 'GPD2017NL018', '工作台', '中型工作台1800*1200*720', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836924469249, NULL, NULL, 'GPD2017NL019', '货架', '货架2000*500*2000', '上海皓臻工业设备有限公司', NULL, NULL, '2017-06-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836937052161, NULL, NULL, 'GPD2017NL020', '货架', '货架2000*500*2000', '上海皓臻工业设备有限公司', NULL, NULL, '2017-06-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836953829378, NULL, NULL, 'GPD2017NL021', '货架', '货架2000*500*2000', '上海皓臻工业设备有限公司', NULL, NULL, '2017-06-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836970606593, NULL, NULL, 'GPD2017NL022', '货架', '货架1500*600*1500', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217836995772418, NULL, NULL, 'GPD2017NL023', '货架', '货架1500*600*1500', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837012549634, NULL, NULL, 'GPD2017NL024', '货架', '货架1500*600*1500', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837029326849, NULL, NULL, 'GPD2017NL025', '货架', '货架1500*600*1500', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837046104065, NULL, NULL, 'GPD2017NL026', '货架', '货架1500*600*1500', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837071269890, NULL, NULL, 'GPD2017NL027', '货架', '货架1500*600*1500', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837088047106, NULL, NULL, 'GPD2017NL028', '货架', '货架1500*600*1500', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837109018625, NULL, NULL, 'GPD2017NL029', '滚筒架', '2050*1250*1765', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837129990145, NULL, NULL, 'GPD2017NL030', '滚筒架', '2050*1250*1765', '上海皓臻工业设备有限公司', NULL, NULL, '2017-07-24', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', '台', NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837155155969, NULL, NULL, 'GPD2017NL031', '五层货架', '2m*1.8m*0.4m', '/', NULL, NULL, '2017-11-03', NULL, '信息化事业部', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '/', '台', NULL, NULL, NULL, '信息化3楼小车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837176127490, NULL, NULL, 'GPD2017NL032', '五层货架', '2m*1.8m*0.4m', '/', NULL, NULL, '2017-11-03', NULL, '信息化事业部', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '/', '台', NULL, NULL, NULL, '信息化3楼小车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837197099009, NULL, NULL, 'GOA2017NL222', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837222264834, NULL, NULL, 'GOA2017NL223', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837247430657, NULL, NULL, 'GOA2017NL224', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837264207874, NULL, NULL, 'GOA2017NL225', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837285179393, NULL, NULL, 'GOA2017NL226', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837301956609, NULL, NULL, 'GOA2017NL227', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837327122434, NULL, NULL, 'GOA2017NL228', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837348093953, NULL, NULL, 'GOA2017NL229', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837369065473, NULL, NULL, 'GOA2017NL230', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837394231297, NULL, NULL, 'GOA2017NL231', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837419397122, NULL, NULL, 'GOA2017NL232', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837436174337, NULL, NULL, 'GOA2017NL233', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837465534466, NULL, NULL, 'GOA2017NL234', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837494894594, NULL, NULL, 'GOA2017NL235', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837515866113, NULL, NULL, 'GOA2017NL236', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837532643329, NULL, NULL, 'GOA2017NL237', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837549420546, NULL, NULL, 'GOA2017NL238', '索速一体机', '双核1037U 内存2G 固态硬盘32G', '广州索速电子科技有限公司', NULL, NULL, '2017-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州索速电子科技有限公司', '台', NULL, NULL, NULL, '故障换机过程中丢失1台');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837574586370, NULL, NULL, 'GPC2017NL022', '在线气相色谱仪', 'N200', '和析仪器你(上海)有限公司', NULL, NULL, '2017-09-30', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '和析仪器你(上海)有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837595557890, NULL, NULL, 'GPC2017NL023', '在线高速点胶机', 'AU77D', '深圳市轴心自控技术有限公司', NULL, NULL, '2017-08-08', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市轴心自控技术有限公司', '台', NULL, NULL, NULL, '2024.09.24转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837620723713, NULL, NULL, 'GPC2017NL024', '冷却系统', '泉友 QYL-D30AF', '上海泉贤实业有限公司', NULL, NULL, '2017-08-07', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海泉贤实业有限公司', '台', NULL, NULL, NULL, '富奇高低温库房专用冷却装置');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837645889537, NULL, NULL, 'GPC2017NL025', '空气压缩机', 'YB-WWJ200', '上海勇霸机电技术有限公司', NULL, NULL, '2017-11-11', NULL, '信息化事业部', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海勇霸机电技术有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837671055362, NULL, NULL, 'GPC2017NL026', '机械手臂', 'MOTOMAN-GP8', '安川电机(中国)有限公司', NULL, NULL, '2017-10-11', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '安川电机(中国)有限公司', '台', NULL, NULL, NULL, '用于研发、展会展览');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837692026882, NULL, NULL, 'GOB2017NL018', '二维码打印机', '佳博 300密度点高清打印', '上海锐印电子设备有限公司', NULL, NULL, '2017-11-14', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-01-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海锐印电子设备有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837708804098, NULL, NULL, 'GPC2017NL027', 'i-Stock II Plus 双深智能仓储', 'i-Stock II Plus 双深智能仓储(i-Stock ⅡPlus) 系统(含贴标机+AGV)', '苏州艾斯达克智能科技有限公司', NULL, NULL, '2017-05-24', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-01-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '苏州艾斯达克智能科技有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837725581314, NULL, NULL, 'GPC2018NL001', '气相色谱仪', 'GC9310', '上海色谱仪器有限公司', NULL, NULL, '2017-12-12', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-01-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海色谱仪器有限公司', '台', NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837742358530, NULL, NULL, 'GPG2018NL001', '传感器老化仪柜子', '定制款5层', '上海佳迎机电成套设备有限公司', NULL, NULL, '2017-08-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-02-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海佳迎机电成套设备有限公司', '台', NULL, NULL, NULL, '定制规格,适用于传感器老化');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837767524354, NULL, NULL, 'GPC2018NH001', 'VOCS在线监测系统', '挥发性有机物分析系统', '杭州泽天科技有限公司', NULL, NULL, '2017-06-22', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-03-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '杭州泽天科技有限公司', '台', NULL, NULL, NULL, '位于传感器车间废气治理平台下右侧设备柜机');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837788495873, NULL, NULL, 'GPC2018NL002', '步入式高低温试验箱', 'CVT 8/40-90', '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, '2017-06-15', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-03-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '伟思富奇环境试验仪器(太仓)有限公司', '台', NULL, NULL, NULL, '德国伟思富奇,定制设备');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837805273090, NULL, NULL, 'GPA2018NL001', 'PSK自动化生产线', '定制规格', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2017-07-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837826244610, NULL, NULL, 'GPB2018NL001', '气动压线钳', '欧式管形端子压线钳0.25-2.5平方(台式)', '乐清市盐盆阿海五金商行', NULL, NULL, '2018-03-26', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2018-04-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '乐清市盐盆阿海五金商行', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837843021826, NULL, NULL, 'GOB2018NL003', '号码管打印机', '佳能C-210E', '上海锐亿数码科技有限公司', NULL, NULL, '2018-03-09', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2018-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海锐亿数码科技有限公司', NULL, NULL, NULL, NULL, '淘宝买');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837859799041, NULL, NULL, 'GPC2018NL003', '激光切割机', 'C60-6040 激光切割机(含升降台)', '苏州镭扬激光科技有限公司', NULL, NULL, '2018-01-25', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2018-03-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '苏州镭扬激光科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837914324994, NULL, NULL, 'GPC2018NL004', '标签剥离机', 'BSC-110', '上海岳感电子有限公司', NULL, NULL, '2018-03-08', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2018-03-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海岳感电子有限公司', NULL, NULL, NULL, NULL, '淘宝买');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837935296513, NULL, NULL, 'GPC2018NL041', '连续式剥皮打端机', 'JHN-BD06', '昆山亚拓机械设备有限公司', NULL, NULL, '2018-01-28', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2018-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '昆山亚拓机械设备有限公司', NULL, NULL, NULL, NULL, '送刀片3副,模拟产品专用机');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837956268033, NULL, NULL, 'GPC2018NL042', '连续式剥皮打端机', 'JHN-BD06', '昆山亚拓机械设备有限公司', NULL, NULL, '2018-01-28', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2018-04-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '昆山亚拓机械设备有限公司', NULL, NULL, NULL, NULL, '送刀片3副,9700产品专用机');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217837981433857, NULL, NULL, 'GPB2018NL002', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838002405377, NULL, NULL, 'GPB2018NL003', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838019182594, NULL, NULL, 'GPB2018NL004', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838031765505, NULL, NULL, 'GPB2018NL005', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838056931330, NULL, NULL, 'GPB2018NL006', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838073708546, NULL, NULL, 'GPB2018NL007', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838090485761, NULL, NULL, 'GPB2018NL008', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838115651585, NULL, NULL, 'GPB2018NL009', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838136623106, NULL, NULL, 'GPB2018NL010', '智能无铅焊台', 'QUICK 203H', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838161788930, NULL, NULL, 'GPB2018NL011', '智能无铅焊台', 'QUICK 203H', '快克智能装备股份有限公司', NULL, NULL, '2018-05-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838182760450, NULL, NULL, 'GPG2018NL002', '奥津手动叉车', '2.5吨 规格:标准款520*1150', '上海长锦机电设备有限公司', NULL, NULL, '2018-06-01', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海长锦机电设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838207926273, NULL, NULL, 'GPC2018NL005', '全自动电脑切管机', 'MTF-200ST', '深圳市迈腾飞科技有限公司', NULL, NULL, '2018-01-07', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市迈腾飞科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838224703489, NULL, NULL, 'GPG2018NL003', '高低温实验箱 底座框架', '定制款', '上海皇闽铝业有限公司', NULL, NULL, '2018-05-14', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838241480706, NULL, NULL, 'GPG2018NL004', '高低温实验箱 底座框架', '定制款', '上海皇闽铝业有限公司', NULL, NULL, '2018-05-14', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838262452226, NULL, NULL, 'GPG2018NL006', '高低温实验箱 底座框架', '定制款', '上海皇闽铝业有限公司', NULL, NULL, '2018-05-14', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838279229442, NULL, NULL, 'GPG2018NL005', '自动测试台机柜', '定制款', '上海皇闽铝业有限公司', NULL, NULL, '2018-03-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838300200961, NULL, NULL, 'GPG2018NL007', '丝杆', '丝杆一批', '上海联巨机电有限公司', NULL, NULL, '2018-05-15', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海联巨机电有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838325366785, NULL, NULL, 'GPG2018NL010', '研华工控机', 'ARK-1550-S9A1E', '深圳研华', NULL, NULL, '2017-09-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海拓峰自动化系统有限公司', NULL, NULL, NULL, NULL, '数字车间,PSK设备设备使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838350532609, NULL, NULL, 'GPG2018NL011', '高频切换开关', '高频切换开关', '北京信测科技有限公司', NULL, NULL, '2017-07-28', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '北京信测科技有限公司', NULL, NULL, NULL, NULL, '数字车间使用??');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838367309826, NULL, NULL, 'GPG2018NL013', '系统硬盘', '系统硬盘', '深圳市富港迪科技有限公司', NULL, NULL, '2018-04-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市富港迪科技有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838388281345, NULL, NULL, 'GPG2018NL008', '电话模拟分机设备', 'AVAYA电话模拟分机设备', '北京红帆联合网络通信科技有限公司', NULL, NULL, '2018-05-28', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '北京红帆联合网络通信科技有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838405058562, NULL, NULL, 'GPG2018NL012', '功率放大器', '功率放大器', '北京信测科技有限公司', NULL, NULL, '2017-08-28', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '北京信测科技有限公司', NULL, NULL, NULL, NULL, '数字车间使用??');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838421835778, NULL, NULL, 'GOG2018NL001', '投影幕', '定制规格,遥控黑白面', '红叶影视器材股份有限公司', NULL, NULL, '2017-08-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '苏州迪曼智能影音系统工程有限公司', '面', NULL, NULL, NULL, '数字车间,PSK设备设备使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838442807297, NULL, NULL, 'GPC2018NL006', '进口高低温试验箱', 'VCL7006', 'Votsch Industrietechnik德国伟思富奇', NULL, NULL, '2018-04-26', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, 'Votsch Industrietechnik德国伟思富奇', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838467973122, NULL, NULL, 'GPC2018NL007', '进口高低温试验箱', 'VTL4006', 'Votsch Industrietechnik德国伟思富奇', NULL, NULL, '2018-04-26', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, 'Votsch Industrietechnik德国伟思富奇', NULL, NULL, NULL, NULL, '数字车间使用,2023.12.21转研发');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838501527554, NULL, NULL, 'GPC2018NL008', '进口高低温试验箱', 'VTL4006', 'Votsch Industrietechnik德国伟思富奇', NULL, NULL, '2018-04-26', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, 'Votsch Industrietechnik德国伟思富奇', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838518304770, NULL, NULL, 'GOA2018NL074', '电脑', '电脑', '深圳市赛鑫科科技发展有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市赛鑫科科技发展有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838535081986, NULL, NULL, 'GPG2018NL014', '超级恒温水浴锅', '超级恒温水浴锅', '常州市万合仪器制作有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '常州市万合仪器制作有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838564442113, NULL, NULL, 'GPG2018NL015', '恒温水浴槽', '恒温水浴槽', '常州金坛中旺仪器制造有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '常州金坛中旺仪器制造有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838585413634, NULL, NULL, 'GPC2018NL009', '真空浸漆设备', '真空浸漆设备', '张家港市佳龙真空浸漆设备制造厂', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '张家港市佳龙真空浸漆设备制造厂', NULL, NULL, NULL, NULL, '数字车间使用,2024.10.07已走报废单,变卖');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838606385154, NULL, NULL, 'GPG2018NL016', '无齿带锯', 'MJ104', '江苏腾飞数控机械有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '江苏腾飞数控机械有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838627356674, NULL, NULL, 'GPC2018NL010', '双级纯水设备', 'HY-DRO 300', '上海惠源水处理设备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海惠源水处理设备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838644133889, NULL, NULL, 'GPG2018NL017', '台车炉', 'SXL-900T/120', '上海钜晶精密仪器制造有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海钜晶精密仪器制造有限公司', NULL, NULL, NULL, NULL, '数字车间使用,2024.10.07已走报废单,变卖');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838656716801, NULL, NULL, 'GPC2018NL011', '微波转盘式干燥箱', '30kw', '上海斡龙微波科技有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海斡龙微波科技有限公司', NULL, NULL, NULL, NULL, '数字车间使用,2024.10.07已走报废单,变卖');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838677688322, NULL, NULL, 'GPC2018NL012', '混胶系统', '分散机等7种配件', '上海法孚莱机电科技发展有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海法孚莱机电科技发展有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838694465538, NULL, NULL, 'GPC2018NL013', '6M柔性自动组装线', 'SSM-6M/智能兼容性,非标定制', '上海统然自动化科技有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838715437058, NULL, NULL, 'GPA2018NL002', '智能生产线', '9700自动组装线生产线', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838736408578, NULL, NULL, 'GPA2018NL003', '瓦楞纸生产线', '瓦楞纸生产线', '江阴市通惠机械有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '江阴市通惠机械有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838753185794, NULL, NULL, 'GOA2018NL073', '电脑', '电脑', '深圳市赛鑫科科技发展有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市赛鑫科科技发展有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838769963009, NULL, NULL, 'GOA2018NL075', '交换机', '交换机', '上海旺乾电子科技有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海旺乾电子科技有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838782545921, NULL, NULL, 'GPA2018NL004', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838803517442, NULL, NULL, 'GPA2018NL005', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838816100353, NULL, NULL, 'GPA2018NL006', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838828683266, NULL, NULL, 'GPA2018NL007', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838841266178, NULL, NULL, 'GPA2018NL008', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838853849089, NULL, NULL, 'GPA2018NL009', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838870626306, NULL, NULL, 'GPA2018NL010', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838883209217, NULL, NULL, 'GPA2018NL011', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838916763650, NULL, NULL, 'GPA2018NL012', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838946123778, NULL, NULL, 'GPA2018NL013', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838962900993, NULL, NULL, 'GPA2018NL014', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '数字车间使用,2024.05.20转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838975483905, NULL, NULL, 'GPA2018NL015', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217838988066817, NULL, NULL, 'GPA2018NL016', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839000649730, NULL, NULL, 'GPA2018NL017', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839013232641, NULL, NULL, 'GPA2018NL018', '高精度智能测试仪', 'HT-1000A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839030009858, NULL, NULL, 'GPG2018NL018', '程控固化室', '程控固化室', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839042592769, NULL, NULL, 'GPC2018NL014', '油水分离器', 'SHY-I-A (L2000*W850*H1200mm)', '上海汇元环保设备有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海汇元环保设备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839055175682, NULL, NULL, 'GPG2018NL019', '管式电炉', '管式电炉', '上海华宴电炉厂', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海华宴电炉厂', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839071952897, NULL, NULL, 'GPA2018NL019', '智能振动冲击仪', 'HT-150A', '上海首睿自动化科技发展有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海首睿自动化科技发展有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839088730114, NULL, NULL, 'GPA2018NL020', '全自动传感器测试仪', 'HT-100A', '上海首睿自动化科技发展有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海首睿自动化科技发展有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839105507330, NULL, NULL, 'GPA2018NL021', '全自动传感器测试仪', 'HT-100A', '上海首睿自动化科技发展有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海首睿自动化科技发展有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839118090242, NULL, NULL, 'GPC2018NL015', '气体质量控制器', 'CX-GMFM-XD300M/XD300C', '上海瓷熙仪器仪表有限公司', NULL, NULL, '2018-06-28', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海瓷熙仪器仪表有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839130673154, NULL, NULL, 'GPC2018NL016', '离线式AOI', '离线式AOI VCTA-Z5X', '深圳市振华兴科技有限公司', NULL, NULL, '2018-06-21', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市振华兴科技有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839143256065, NULL, NULL, 'GPC2018NL017', '吸附试验台', '1500*850*1700', '上海索林流体技术有限公司', NULL, NULL, '2017-12-05', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海索林流体技术有限公司', NULL, NULL, NULL, NULL, '/');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839164227586, NULL, NULL, 'GOA2018NL076', '研华工控机', 'UNO-2272G', '上海圣界电子科技有限公司', NULL, NULL, '2018-04-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海圣界电子科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839181004801, NULL, NULL, 'GPA2018NL022', '水分测试仪', 'DHS-10A', '浙江力辰仪器科技有限公司', NULL, NULL, '2018-06-10', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '浙江力辰仪器科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839193587714, NULL, NULL, 'GPG2018NL026', '数字化车间软件系统', '数字化车间,多项软件合计', '海宝软件', NULL, NULL, '2018-06-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '海宝软件', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839210364930, NULL, NULL, 'GPG2018NL020', '工业无线AP', '工业AP AWK-1131A-EU', '上海鸿研电子科技有限公司', NULL, NULL, '2017-07-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海鸿研电子科技有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839222947841, NULL, NULL, 'GPG2018NL021', '工业无线AP', '工业AP AWK-1131A-EU', '上海鸿研电子科技有限公司', NULL, NULL, '2017-07-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海鸿研电子科技有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839239725057, NULL, NULL, 'GPG2018NL022', '工业无线AP', '工业AP AWK-1131A-EU', '上海鸿研电子科技有限公司', NULL, NULL, '2017-07-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海鸿研电子科技有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839260696578, NULL, NULL, 'GPG2018NL023', '工业无线AP', '工业AP AWK-1131A-EU', '上海鸿研电子科技有限公司', NULL, NULL, '2017-07-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海鸿研电子科技有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839277473794, NULL, NULL, 'GPG2018NL024', '工业无线AP', '工业AP AWK-1131A-EU', '上海鸿研电子科技有限公司', NULL, NULL, '2017-07-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海鸿研电子科技有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839290056705, NULL, NULL, 'GPG2018NL025', '工业无线AP', '工业AP AWK-1131A-EU', '上海鸿研电子科技有限公司', NULL, NULL, '2017-07-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海鸿研电子科技有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839306833921, NULL, NULL, 'GPC2018NL018', '3轴焊接机器人', 'QUICK 9220A', '快克智能装备股份有限公司', NULL, NULL, '2018-06-21', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839327805441, NULL, NULL, 'GPD2018NL002', '货架', 'L6500(外)*W600*H2300', '上海皓臻工业设备有限公司', NULL, NULL, '2018-06-21', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839344582658, NULL, NULL, 'GPD2018NL003', '货架', 'L1400(外)*W400*H1850', '上海皓臻工业设备有限公司', NULL, NULL, '2018-06-21', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839357165569, NULL, NULL, 'GPD2018NL004', '货架', 'L1400(外)*W400*H1850', '上海皓臻工业设备有限公司', NULL, NULL, '2018-06-21', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '数字车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839369748481, NULL, NULL, 'GPD2018NL005', '货架', 'L2900(外)*W600*H2300', '上海皓臻工业设备有限公司', NULL, NULL, '2018-06-21', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839386525698, NULL, NULL, 'GPB2018NL012', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839403302913, NULL, NULL, 'GPB2018NL013', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839420080129, NULL, NULL, 'GPB2018NL014', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839436857345, NULL, NULL, 'GPB2018NL015', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839453634562, NULL, NULL, 'GPB2018NL016', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839466217474, NULL, NULL, 'GPB2018NL017', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839487188994, NULL, NULL, 'GPB2018NL018', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839503966209, NULL, NULL, 'GPB2018NL019', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839520743426, NULL, NULL, 'GPB2018NL020', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839529132034, NULL, NULL, 'GPB2018NL021', '无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2018-06-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839550103554, NULL, NULL, 'GPC2018NL019', '高精密点胶机', '微型桌面机器人', '深圳市轴心自控技术有限公司', NULL, NULL, '2018-06-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市轴心自控技术有限公司', NULL, NULL, NULL, NULL, '柔性线');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839571075074, NULL, NULL, 'GPG2018NL027', '中文拣货电子标签管理系统', '定制电子标签系统', '上海芯特数字技术有限公司', NULL, NULL, '2017-04-03', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海芯特数字技术有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839592046594, NULL, NULL, 'GOA2018NL095', '显示器', 'E1715S', '戴尔', NULL, NULL, '2018-07-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海先如信息技术有限公司', NULL, NULL, NULL, NULL, '用于众泰兴9700自动化生产线工位3处。');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839608823810, NULL, NULL, 'GOA2018NL096', '显示器', 'E1715S', '戴尔', NULL, NULL, '2018-07-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海先如信息技术有限公司', NULL, NULL, NULL, NULL, '用于众泰兴9700自动化生产线工位3处。');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839629795330, NULL, NULL, 'GOA2018NL097', '显示器', 'E1715S', '戴尔', NULL, NULL, '2018-07-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海先如信息技术有限公司', NULL, NULL, NULL, NULL, '用于众泰兴9700自动化生产线工位3处。');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839642378241, NULL, NULL, 'GPG2018NL031', '工控机', '研凌208无风扇工控机J1900', '深圳市赛畅科技有限公司', NULL, NULL, '2018-07-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市赛畅科技有限公司', NULL, NULL, NULL, NULL, '用于众泰兴9700自动化生产线');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839663349761, NULL, NULL, 'GOA2018NH009', 'MOXA交换机', 'EDS-205A', '上海优特新实业有限公司', NULL, NULL, '2018-07-01', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海优特新实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839680126978, NULL, NULL, 'GPG2018NH001', '粘度计', 'NDJ-9S', '上海平轩科学仪器有限公司', NULL, NULL, '2018-07-19', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海平轩科学仪器有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839705292802, NULL, NULL, 'GPG2018NH002', '定量取样器', 'YT-DL100', '杭州研特科技有限公司', NULL, NULL, '2018-07-01', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '杭州研特科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839734652929, NULL, NULL, 'GPA2018NH001', '测试仪 (风速仪)', '6036P', '广州君达仪器仪表有限公司', NULL, NULL, '2018-05-25', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '广州君达仪器仪表有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839759818753, NULL, NULL, 'GOA2018NH010', '一体工作站', 'IPPC-6192A', '北京东森兰泰科技有限公司', NULL, NULL, '2018-07-01', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '北京东森兰泰科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839793373186, NULL, NULL, 'GPC2018NL040', '手推走刀式分板机', 'NS-785 L450*W330*H350(mm)', '深圳市新光扬电子设备有限公司', NULL, NULL, '2018-08-22', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市新光扬电子设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839810150402, NULL, NULL, 'GPG2018NL032', '液压车(奥津)', 'NP510', '上海长锦机电设备有限公司', NULL, NULL, '2018-08-22', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海长锦机电设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839831121921, NULL, NULL, 'GPG2018NL033', '半电动堆高车', 'BT05309F', '上海罗倍拓工业设备有限公司', NULL, NULL, '2018-09-07', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海罗倍拓工业设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839847899137, NULL, NULL, 'GPG2018NL034', '陶瓷纤维马弗炉', 'SXL-1200C', '上海钜晶精密仪器制造有限公司', NULL, NULL, '2018-09-07', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海钜晶精密仪器制造有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839868870657, NULL, NULL, 'GPG2018NL035', '塑料桶', '1000L', '上海尊霖塑料制品有限公司', NULL, NULL, '2018-09-07', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海尊霖塑料制品有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839894036481, NULL, NULL, 'GPG2018NL036', '塑料桶', '1000L', '上海尊霖塑料制品有限公司', NULL, NULL, '2018-09-07', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海尊霖塑料制品有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839915008001, NULL, NULL, 'GPG2018NL037', '马弗炉托盘', '1100*700', '常州维克低温设备有限公司', NULL, NULL, '2018-09-07', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '常州维克低温设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839935979521, NULL, NULL, 'GPG2018NL038', '吊篮底座', 'φ1100', '常州维克低温设备有限公司', NULL, NULL, '2018-09-07', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '常州维克低温设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839956951042, NULL, NULL, 'GPG2018NL045', '蓝牙打印机', 'JC B3', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217839986311169, NULL, NULL, 'GPG2018NL046', '蓝牙打印机', 'JC B3', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840011476993, NULL, NULL, 'GPG2018NL047', '蓝牙打印机', 'JC B3', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840040837122, NULL, NULL, 'GPG2018NL048', '蓝牙打印机', 'JC B3', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840061808642, NULL, NULL, 'GPG2018NL049', '蓝牙打印机', 'JC B3', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840082780161, NULL, NULL, 'GPG2018NL050', '蓝牙打印机', 'JC B3', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840103751682, NULL, NULL, 'GPG2018NL039', '手持终端PDA', 'PDA', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840120528898, NULL, NULL, 'GPG2018NL040', '手持终端PDA', 'PDA', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840141500417, NULL, NULL, 'GPG2018NL041', '手持终端PDA', 'PDA', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840166666242, NULL, NULL, 'GPG2018NL042', '手持终端PDA', 'PDA', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840187637762, NULL, NULL, 'GPG2018NL043', '手持终端PDA', 'PDA', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840204414978, NULL, NULL, 'GPG2018NL044', '手持终端PDA', 'PDA', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-09-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840225386497, NULL, NULL, 'GPG2018NL051', '高精度三爪内径千分尺', '日本三丰 型号HT-10R', '东莞市锯工五金贸易有限公司', NULL, NULL, '2018-09-13', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '东莞市锯工五金贸易有限公司', NULL, NULL, NULL, NULL, 'IQC来料检验使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840246358018, NULL, NULL, 'GPG2018NL052', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, '制程追溯用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840275718146, NULL, NULL, 'GPG2018NL053', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, '制程追溯用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840292495362, NULL, NULL, 'GPG2018NL054', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, '制程追溯用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840313466881, NULL, NULL, 'GPG2018NL055', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, '制程追溯用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840330244097, NULL, NULL, 'GPG2018NL056', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, '制程追溯用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840363798529, NULL, NULL, 'GPG2018NL057', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, '制程追溯用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840393158657, NULL, NULL, 'GPG2018NL058', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, '制程追溯用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840409935873, NULL, NULL, 'GPG2018NL059', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, '制程追溯用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840430907393, NULL, NULL, 'GPG2018NL060', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, '制程追溯用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840451878914, NULL, NULL, 'GPG2018NL061', '二维码标签打印机', '佳博300dpi', '无锡华皓智能科技有限公司', NULL, NULL, '2018-09-04', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '无锡华皓智能科技有限公司', NULL, NULL, NULL, NULL, '制程追溯用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840468656130, NULL, NULL, 'GOA2018NL134', '无风扇工控机', '迷你低功耗', '深圳市控汇智能股份有限公司', NULL, NULL, '2018-09-19', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳市控汇智能股份有限公司', NULL, NULL, NULL, NULL, '9700自动化线用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840485433345, NULL, NULL, 'GPG2018NL062', '超音波模具', 'PSF盖板 20K', '昆山东和超声波设备有限公司', NULL, NULL, '2018-09-03', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, 'PSF盖板模具一套 20Khz');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840502210561, NULL, NULL, 'GPG2018NL063', '老化仪机柜', '传感器老化仪机柜(定制款)', '上海佳迎机电成套设备有限公司', NULL, NULL, '2018-10-11', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海佳迎机电成套设备有限公司', NULL, NULL, NULL, NULL, '传感器老化机柜,定制');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840523182081, NULL, NULL, 'GPD2018NL006', '货架', '货架1280*600*2200', '上海皓臻工业设备有限公司', NULL, NULL, '2018-10-11', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '封罐间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840539959298, NULL, NULL, 'GPD2018NL007', '货架', '货架1280*600*2200', '上海皓臻工业设备有限公司', NULL, NULL, '2018-10-11', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '封罐间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840560930818, NULL, NULL, 'GPG2018NL064', '主板与镜架(烫压治具)', 'pse柔性线使用治具 1804项目', '苏州沃德科电子有限公司', NULL, NULL, '2018-10-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '苏州沃德科电子有限公司', NULL, NULL, NULL, NULL, '1804项目 pse柔性线使用治具');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840581902337, NULL, NULL, 'GPG2018NL065', '壳体与主板镜架(烫压治具)', 'pse柔性线使用治具 1804项目', '苏州沃德科电子有限公司', NULL, NULL, '2018-10-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '苏州沃德科电子有限公司', NULL, NULL, NULL, NULL, '1804项目 pse柔性线使用治具');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840602873858, NULL, NULL, 'GPC2018NL043', '自动焊接机器人', 'QUICK9220A', '快克智能装备股份有限公司', NULL, NULL, '2018-10-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840619651073, NULL, NULL, 'GPC2018NL044', '超音波熔接模具', 'PSE 按键(35KHZ)', '昆山东和超声波设备有限公司', NULL, NULL, '2018-10-30', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2018-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '2024.04.25转移安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840644816898, NULL, NULL, 'GPC2018NL045', '超音波熔接模具', 'PSE 滤光片 20KHZ', '昆山东和超声波设备有限公司', NULL, NULL, '2018-10-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840661594113, NULL, NULL, 'GPC2018NL046', '超音波熔接模具', 'PSE 后盖板 20KHZ', '昆山东和超声波设备有限公司', NULL, NULL, '2018-10-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-11-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840678371329, NULL, NULL, 'GPA2018NH007', '便携式VOC检测', '型号:ppbRAE3000', '美国华瑞', NULL, NULL, '2018-11-16', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海誉瑞仪器有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840695148545, NULL, NULL, 'GOG2018NH005', 'CK 一体式纠偏系统', 'LC-A50-750*300', '中山市莱科自动化设备有限公司', NULL, NULL, '2018-11-22', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '中山市莱科自动化设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840720314369, NULL, NULL, 'GOG2018NH006', 'CK 一体式纠偏系统', 'LC-A50-750*300', '中山市莱科自动化设备有限公司', NULL, NULL, '2018-11-22', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '中山市莱科自动化设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840741285889, NULL, NULL, 'GOG2018NH007', 'CK 一体式纠偏系统', 'LC-A50-750*300', '中山市莱科自动化设备有限公司', NULL, NULL, '2018-11-22', NULL, '工程研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '中山市莱科自动化设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840758063105, NULL, NULL, 'GPC2018NL047', '红外温度传感器', 'RAYCMLTV3M(-20~500度,0-5V电压输出,3米)', '深圳维多利斯科技有限公司', NULL, NULL, '2018-11-16', NULL, '信息化事业部', NULL, NULL, NULL, NULL, NULL, NULL, '2018-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '深圳维多利斯科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840783228930, NULL, NULL, 'GOB2018NL008', '号码管打印机', '佳能C-210E', '上海岑溪实业有限公司', NULL, NULL, '2018-12-04', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海岑溪实业有限公司', NULL, NULL, NULL, NULL, '工程中心项目用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840804200449, NULL, NULL, 'GOB2018NL009', '号码管打印机', '佳能C-210E', '上海岑溪实业有限公司', NULL, NULL, '2018-12-04', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海岑溪实业有限公司', NULL, NULL, NULL, NULL, '工程中心项目用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840825171970, NULL, NULL, 'GOB2018NL010', '型标签打印机', '兄弟牌PT-18Rz', '上海岑溪实业有限公司', NULL, NULL, '2018-12-06', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-10-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海岑溪实业有限公司', NULL, NULL, NULL, NULL, '工程中心项目用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840883892226, NULL, NULL, 'GPA2019NL001', '反射率测定仪', 'C84-Ⅲ型', '上海专色贸易有限公司', NULL, NULL, '2018-12-29', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海专色贸易有限公司', NULL, NULL, NULL, NULL, '质量管理部');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840909058050, NULL, NULL, 'GPB2019NL001', '铝型材推车', '定制规格', '上海昶申铝材有限公司', NULL, NULL, '2018-12-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '传感器车间用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840930029569, NULL, NULL, 'GPB2019NL002', '铝型材推车', '定制规格', '上海昶申铝材有限公司', NULL, NULL, '2018-12-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '传感器车间用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840955195393, NULL, NULL, 'GPB2019NL003', '铝型材小推车', '定制规格', '上海昶申铝材有限公司', NULL, NULL, '2018-12-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '传感器车间用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217840984555522, NULL, NULL, 'GPG2019NL001', '日本三丰数显游标卡尺', '200mm/500-197/公英', '东莞市锯工五金贸易有限公司', NULL, NULL, '2018-12-29', NULL, '技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:46', NULL, '2025-02-14 09:53:46', NULL, '东莞市锯工五金贸易有限公司', NULL, NULL, NULL, NULL, '内部编号:NPA2018H009');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841001332737, NULL, NULL, 'GPC2019NL001', '10.4寸电容一体机', '10.4寸电容触摸', '上海森克电子科技有限公司', NULL, NULL, '2018-12-29', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海森克电子科技有限公司', NULL, NULL, NULL, NULL, '研发中心');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841026498561, NULL, NULL, 'GPC2019NL002', '10.4寸电容一体机', '10.4寸电容触摸', '上海森克电子科技有限公司', NULL, NULL, '2018-12-29', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海森克电子科技有限公司', NULL, NULL, NULL, NULL, '研发中心');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841047470081, NULL, NULL, 'GPC2019NL003', '无线二维码扫描设备', '带充电座+数据线', '广州和为盛信息科技有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '广州和为盛信息科技有限公司', NULL, NULL, NULL, NULL, '数字车间用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841064247297, NULL, NULL, 'GPC2019NL004', '无线二维码扫描设备', '带充电座+数据线', '广州和为盛信息科技有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '广州和为盛信息科技有限公司', NULL, NULL, NULL, NULL, '数字车间用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841081024514, NULL, NULL, 'GPC2019NL005', '无线二维码扫描设备', '带充电座+数据线', '广州和为盛信息科技有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '广州和为盛信息科技有限公司', NULL, NULL, NULL, NULL, '数字车间用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841106190337, NULL, NULL, 'GPC2019NL006', '无线二维码扫描设备', '带充电座+数据线', '广州和为盛信息科技有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '广州和为盛信息科技有限公司', NULL, NULL, NULL, NULL, '数字车间用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841127161858, NULL, NULL, 'GPC2019NL007', '无线二维码扫描设备', '带充电座+数据线', '广州和为盛信息科技有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '广州和为盛信息科技有限公司', NULL, NULL, NULL, NULL, '数字车间用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841152327682, NULL, NULL, 'GPC2019NL008', '无线二维码扫描设备', '带充电座+数据线', '广州和为盛信息科技有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '广州和为盛信息科技有限公司', NULL, NULL, NULL, NULL, '数字车间用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841169104897, NULL, NULL, 'GPC2019NL009', '读码器', 'Matrix120 210-010', '得利捷', NULL, NULL, '2018-12-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁管自动化(上海)有限公司', NULL, NULL, NULL, NULL, '传感器车间用,VGA自动开门');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841190076417, NULL, NULL, 'GPC2019NL010', '读码器', 'Matrix120 210-010', '得利捷', NULL, NULL, '2018-12-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁管自动化(上海)有限公司', NULL, NULL, NULL, NULL, '传感器车间用,VGA自动开门');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841215242242, NULL, NULL, 'GPC2019NL011', '读码器', 'Matrix120 210-010', '得利捷', NULL, NULL, '2018-12-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁管自动化(上海)有限公司', NULL, NULL, NULL, NULL, '传感器车间用,VGA自动开门');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841232019457, NULL, NULL, 'GPC2019NL012', '读码器', 'Matrix120 210-010', '得利捷', NULL, NULL, '2018-12-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁管自动化(上海)有限公司', NULL, NULL, NULL, NULL, '传感器车间用,VGA自动开门');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841252990978, NULL, NULL, 'GPC2019NL013', '触摸屏', 'HMI MT8103IE 10寸 威纶通', '苏州辉励电气科技有限公司', NULL, NULL, '2018-12-28', NULL, '系统项目部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '苏州辉励电气科技有限公司', NULL, NULL, NULL, NULL, '系统项目部');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841278156802, NULL, NULL, 'GPG2019NL011', '电子秤', 'JS-30D 称重重量:30KG', '上海信衡电子有限公司', NULL, NULL, '2018-08-29', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海信衡电子有限公司', NULL, NULL, NULL, NULL, '成品库');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841299128321, NULL, NULL, 'GPC2019NL014', '缓冲气泡充气机', 'wiair-1000', '宁波广博文具实业有限公司', NULL, NULL, '2018-08-29', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波广博文具实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841311711234, NULL, NULL, 'GPC2019NL015', 'Winson手持扫码枪', 'WNL-6023B/V-RS232', '广州市韦尔讯信息科技有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '广州市韦尔讯信息科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841332682754, NULL, NULL, 'GPC2019NL016', 'Winson手持扫码枪', 'WNL-6023B/V-RS232', '广州市韦尔讯信息科技有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '广州市韦尔讯信息科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841341071362, NULL, NULL, 'GPD2019NL010', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841362042881, NULL, NULL, 'GPD2019NL011', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841378820098, NULL, NULL, 'GPD2019NL012', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841399791618, NULL, NULL, 'GPD2019NL013', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841412374530, NULL, NULL, 'GPD2019NL014', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841424957441, NULL, NULL, 'GPD2019NL015', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841437540354, NULL, NULL, 'GPD2019NL016', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841450123266, NULL, NULL, 'GPD2019NL017', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841466900481, NULL, NULL, 'GPD2019NL018', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841479483394, NULL, NULL, 'GPD2019NL019', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841492066306, NULL, NULL, 'GPD2019NL020', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841508843522, NULL, NULL, 'GPD2019NL021', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841521426433, NULL, NULL, 'GPD2019NL022', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841538203649, NULL, NULL, 'GPD2019NL023', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841550786561, NULL, NULL, 'GPD2019NL024', '车间小推车', '定制物料小推车', '上海汇登铝材有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海汇登铝材有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841571758081, NULL, NULL, 'GPD2019NL025', '铝型材框架', '定制款(柔性线上料车)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '柔性线用滚轮上料车');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841588535297, NULL, NULL, 'GPD2019NL026', '铝型材框架', '定制款(柔性线上料车)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '柔性线用滚轮上料车');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841605312513, NULL, NULL, 'GPD2019NL027', '铝型材框架', '定制款(柔性线上料车)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '柔性线用滚轮上料车');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841622089729, NULL, NULL, 'GPD2019NL028', '铝型材框架', '定制款(柔性线上料车)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '柔性线用滚轮上料车');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841638866946, NULL, NULL, 'GPD2019NL029', '铝型材框架', '定制款(柔性线上料车)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '柔性线用滚轮上料车');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841655644162, NULL, NULL, 'GPD2019NL030', '铝型材框架', '定制款(柔性线上料车)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '柔性线用滚轮上料车');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841668227073, NULL, NULL, 'GPD2019NL031', '铝型材框架', '定制款(全自动测试仪机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '实物为全自动测试仪机柜');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841685004289, NULL, NULL, 'GPD2019NL032', '铝型材框架', '定制款(全自动测试仪机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '实物为全自动测试仪机柜,2023.11.15转移到安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841705975809, NULL, NULL, 'GPD2019NL033', '铝型材框架', '定制款(全自动测试仪机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '实物为全自动测试仪机柜,2023.11.15转移到安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841722753025, NULL, NULL, 'GPD2019NL034', '铝型材框架', '定制款(全自动测试仪机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '实物为全自动测试仪机柜,2023.11.15转移到安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841735335937, NULL, NULL, 'GPD2019NL035', '铝型材框架', '定制款(全自动测试仪机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '实物为全自动测试仪机柜');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841747918850, NULL, NULL, 'GPD2019NL036', '铝型材框架', '定制款(全自动测试仪机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '实物为全自动测试仪机柜');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841764696066, NULL, NULL, 'GPD2019NL037', '铝型材框架', '定制款(全自动测试仪机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '实物为全自动测试仪机柜');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841781473282, NULL, NULL, 'GPD2019NL038', '铝型材框架', '定制款(全自动测试仪机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '实物为全自动测试仪机柜');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841798250498, NULL, NULL, 'GPD2019NL039', '铝型材框架', '定制款(全自动测试仪机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2018-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '实物为全自动测试仪机柜');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841810833409, NULL, NULL, 'GPB2018NL022', '超音波模具', 'PSR圆加方滤光片(上下模)', '昆山新东和超音波设备有限公司', NULL, NULL, '2018-03-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '昆山新东和超音波设备有限公司', '套', NULL, NULL, NULL, '20K智能超声波用治具');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841831804930, NULL, NULL, 'GPB2018NL023', '超音波模具', 'PSR圆加方后盖(上下模)', '昆山新东和超音波设备有限公司', NULL, NULL, '2018-03-11', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2018-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '昆山新东和超音波设备有限公司', '套', NULL, NULL, NULL, '20K智能超声波用治具');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841844387842, NULL, NULL, 'GPD2018NL038', '高精度电动位移滑台', 'GKA60110-1280-12P-P20-C', '东莞鼎企智能自动化科技有限公司', NULL, NULL, '2018-12-19', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-12-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '东莞鼎企智能自动化科技有限公司', NULL, NULL, NULL, NULL, '研发中心试验用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841852776449, NULL, NULL, 'GPD2018NL039', '高精度电动位移滑台', '滑台 (包含MC600控制箱)', '北京卓立汉光仪器有限公司', NULL, NULL, '2018-12-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-12-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '北京卓立汉光仪器有限公司', NULL, NULL, NULL, NULL, '研发中心试验用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841873747970, NULL, NULL, 'GPD2019NH001', '手动液压车', '型号:FN4230-W1', '上海长锦机电设备有限公司', NULL, NULL, '2019-01-02', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-01-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海长锦机电设备有限公司', NULL, NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841894719490, NULL, NULL, 'GPD2019NH002', '手动液压车', '型号:FN4230-W1', '上海长锦机电设备有限公司', NULL, NULL, '2019-01-02', NULL, '工程中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-01-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海长锦机电设备有限公司', NULL, NULL, NULL, NULL, '工程中心三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841911496705, NULL, NULL, 'GPA2018NL023', '可调激光器', '波长:86-850', 'COHERENT', NULL, NULL, '2018-10-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2018-12-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '爱特蒙特', NULL, NULL, NULL, NULL, '加密狗、电源(#86-878)、固定底座(索雷博KM100V)');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841928273922, NULL, NULL, 'GPC2019NH001', '电动铭牌刻字机', '规格选:185mm×115mm;新款电动式(不带电脑', '武汉金雕激光有限公司', NULL, NULL, '2019-01-06', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '武汉金雕激光有限公司', NULL, NULL, NULL, NULL, '工程中心研发部,王莲贞用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217841966022658, NULL, NULL, 'GPA2019NL002', '振动测试仪', 'UT312 分体式', '天津艾锐达仪器仪表贸易有限公司', NULL, NULL, '2019-01-22', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-01-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '天津艾锐达仪器仪表贸易有限公司', NULL, NULL, NULL, NULL, '工程中心研发部,王莲贞用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842007965697, NULL, NULL, 'GPA2019NH001', '接地电阻测量仪表', 'FT3151;测量范围:0~1150Ω(MΩ', '上海君达仪器仪表有限公司', NULL, NULL, '2019-03-04', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-03-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海君达仪器仪表有限公司', NULL, NULL, NULL, NULL, '工程中心研发部,王莲贞用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842024742914, NULL, NULL, 'GPA2019NH002', '泄漏耐压测试仪', '0.1-5)KV;泄漏电流:(0.1-20)mA;5级', '上海本杉仪器设备有限公司', NULL, NULL, '2019-03-04', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-03-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海本杉仪器设备有限公司', NULL, NULL, NULL, NULL, '工程中心研发部,王莲贞用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842041520130, NULL, NULL, 'GPG2019NH001', '红外传感器', 'LC-S20', '中山市莱科自动化设备有限公司', NULL, NULL, '2019-03-07', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-03-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '中山市莱科自动化设备有限公司', NULL, NULL, NULL, NULL, '沸石转轮车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842066685953, NULL, NULL, 'GPC2019NH002', '纠偏控制器主机', 'LC-C10触屏分体式', '中山市莱科自动化设备有限公司', NULL, NULL, '2019-03-07', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-03-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '中山市莱科自动化设备有限公司', NULL, NULL, NULL, NULL, '沸石转轮车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842087657473, NULL, NULL, 'GOB2019NL001', 'brother 标签打印机', 'PT-18RZ', '上海岑溪实业有限公司', NULL, NULL, '2019-03-16', NULL, '信息化事业部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-03-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海岑溪实业有限公司', NULL, NULL, NULL, NULL, '电源,可充电电池充电底座,USB数据线,手提箱,光盘');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842108628994, NULL, NULL, 'GOB2019NL002', 'brother 标签打印机', 'PT-18RZ', '上海岑溪实业有限公司', NULL, NULL, '2019-03-16', NULL, '信息化事业部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-03-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海岑溪实业有限公司', NULL, NULL, NULL, NULL, '电源,可充电电池充电底座,USB数据线,手提箱,光盘');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842150572033, NULL, NULL, 'GPC2018NH002', 'CK 离心脱水机', 'LYP-2060', '泰州市燎原机械制造有限公司', NULL, NULL, '2018-11-16', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-03-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '泰州市燎原机械制造有限公司', NULL, NULL, NULL, NULL, '安装图、说明书、焊接探伤报告,动平衡试验报告、材质及附件合格证、整机试车报告、装箱单、原理图、附件等');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842171543554, NULL, NULL, 'GPC2019NH004', '空气压缩机', '11kw,排气量1.1m³/min 1.6Mpa压力 (16kg/cm²)', '衢州开瑞机械设备有限公司', NULL, NULL, '2019-03-27', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '衢州开瑞机械设备有限公司', NULL, NULL, NULL, NULL, '2023.06.28转到安徽兰宝环保');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842184126465, NULL, NULL, 'GPC2019NH005', '圆钢套丝机', '电动式,M12-M6螺纹', '杭州宁达套丝机厂', NULL, NULL, '2019-03-27', NULL, '环保生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '杭州宁达套丝机厂', NULL, NULL, NULL, NULL, '说明书、合格证');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842200903681, NULL, NULL, 'GPD2019NL003', '货架', '货架 200*180 4层 每层限重200kg', '上海皓臻工业设备有限公司', NULL, NULL, '2019-03-28', NULL, '测控系统部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842217680897, NULL, NULL, 'GPD2019NL004', '货架', '货架 200*180 4层 每层限重200kg', '上海皓臻工业设备有限公司', NULL, NULL, '2019-03-28', NULL, '测控系统部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842230263810, NULL, NULL, 'GPD2019NL005', '货架', '货架 200*180 5层 每层限重150kg', '上海皓臻工业设备有限公司', NULL, NULL, '2019-03-28', NULL, '测控系统部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842251235329, NULL, NULL, 'GPD2019NL006', '货架', '货架 200*180 5层 每层限重150kg', '上海皓臻工业设备有限公司', NULL, NULL, '2019-03-28', NULL, '测控系统部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842272206850, NULL, NULL, 'GPC2019NH006', '5T单梁行车起重机', '2根梁', '河南中州智能设备集团有限公司', NULL, NULL, '2019-03-28', NULL, '沸石转轮车间', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海力豪起重设备有限公司', NULL, NULL, NULL, NULL, '操作说明书,合格证等,存放在沸石转轮车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842326732802, NULL, NULL, 'GPD2019NL007', '货架', 'L2000*W500*H2000*5层', '上海皓臻工业设备有限公司', NULL, NULL, '2019-03-28', NULL, '系统项目部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842347704322, NULL, NULL, 'GPD2019NL008', '货架', 'L2000*W500*H2000*5层', '上海皓臻工业设备有限公司', NULL, NULL, '2019-03-28', NULL, '系统项目部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842364481538, NULL, NULL, 'GPD2019NL009', '货架', 'L2000*W500*H2000*5层', '上海皓臻工业设备有限公司', NULL, NULL, '2019-03-28', NULL, '系统项目部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842398035970, NULL, NULL, 'GPC2018NL60', '逻辑分析设备', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-10-18', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '未知设备???2021.12月搬至安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842414813185, NULL, NULL, 'GPA2018NL025', '光电距离测试台', '/', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2018-09-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842431590401, NULL, NULL, 'GPC2018NL061', 'PCB清洗机', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-11-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '未知设备???2021.12月搬至安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842456756226, NULL, NULL, 'GPA2018NL026', '震动测试系统', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-11-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842469339138, NULL, NULL, 'GPA2018NL027', '加速度冲击测试系统', '/', '上海统然自动化科技有限公司', NULL, NULL, '2019-04-15', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842490310658, NULL, NULL, 'GPB2017NL002', 'PSK超音波模具(上模)', '35k', '昆山周市东和超音波机械', NULL, NULL, '2017-10-23', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '昆山周市东和超音波机械', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842502893569, NULL, NULL, 'GPB2017NL003', 'PSK-2超音波模具35K', '35k', '昆山周市东和超音波机械', NULL, NULL, '2017-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '昆山周市东和超音波机械', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842528059393, NULL, NULL, 'GPC2018NL070', '激光打标机', '/', '耘创九州智能装备有限公司', NULL, NULL, '2018-09-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842544836610, NULL, NULL, 'GPC2018NL071', '雷击浪涌发生设备', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-10-08', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842561613825, NULL, NULL, 'GPC2018NL072', '光学实验平台', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-09-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842578391042, NULL, NULL, 'GPA2018NL030', '智能传感器频率测试仪', '定制型号', '耘创九州智能装备有限公司', NULL, NULL, '2018-09-12', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '电感传感器线性测试用,DQM');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842599362561, NULL, NULL, 'GPC2018NL076', '定向耦合设备', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-12-02', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842620334081, NULL, NULL, 'GPC2018NL077', '信号发生设备', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-11-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '未知设备???暂放金工间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842637111297, NULL, NULL, 'GPA2018NL034', 'EMC 辐射强度检测仪', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-11-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842658082817, NULL, NULL, 'GPA2018NL035', '智能老化测试设备', '/', '耘创九州智能装备有限公司', NULL, NULL, '2018-09-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '未知设备???暂放金工间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842674860033, NULL, NULL, 'GPA2018NL041', '光敏器件检测仪', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-11-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '未知设备???2021.12月搬至安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842695831554, NULL, NULL, 'GPA2018NL042', '光敏器件检测仪', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-11-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842708414465, NULL, NULL, 'GPA2018NL043', '光敏器件检测仪', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-11-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '未知设备???2021.12月搬至安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842725191681, NULL, NULL, 'GPC2018NL035', '传感器在线激光修调系统', '125*95*180', '/', NULL, NULL, NULL, NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '/', NULL, NULL, NULL, NULL, '未知设备???2021.13月搬至安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842741968897, NULL, NULL, 'GPA2018NL031', '智能监测系统', '/', '云南星泉科技有限公司', NULL, NULL, '2019-01-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '云南星泉科技有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842762940417, NULL, NULL, 'GPA2018NL028', '监测系统测试设备', '/', '云南星泉科技有限公司', NULL, NULL, '2019-01-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '云南星泉科技有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842779717634, NULL, NULL, 'GPA2018NL029', '监测系统测试设备', '/', '云南星泉科技有限公司', NULL, NULL, '2019-01-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '云南星泉科技有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842796494850, NULL, NULL, 'GPC2018NL073', '传导抗扰度一体机', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-12-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842817466370, NULL, NULL, 'GPC2018NL074', '传导抗扰度一体机', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-12-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842838437889, NULL, NULL, 'GPC2018NL075', '功率放大设备', '/', '上海统然自动化科技有限公司', NULL, NULL, '2018-12-31', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海统然自动化科技有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842859409410, NULL, NULL, 'GPA2018NL036', '高精度传感器测试仪', '/', '耘创九州智能装备有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842880380929, NULL, NULL, 'GPA2018NL037', '高精度传感器测试仪', '/', '耘创九州智能装备有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842892963842, NULL, NULL, 'GPA2018NL038', '高精度传感器测试仪', '/', '耘创九州智能装备有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842918129665, NULL, NULL, 'GPA2018NL039', '高精度传感器测试仪', '/', '耘创九州智能装备有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842939101185, NULL, NULL, 'GPA2018NL040', '高精度传感器测试仪', '/', '耘创九州智能装备有限公司', NULL, NULL, '2018-09-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842955878402, NULL, NULL, 'GPA2017NL051', '三轴焊接机器人', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '标签重复贴,未知设备?');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842972655617, NULL, NULL, 'GPA2018NL032', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2017-12-26', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '新款落地式带轮自动测试仪,设备已经转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217842989432834, NULL, NULL, 'GPA2018NL033', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2017-12-26', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2017-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '新款落地式带轮自动测试仪,设备已经转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843010404354, NULL, NULL, 'GPA2018NL044', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '新款落地式带轮自动测试仪,设备已经转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843035570177, NULL, NULL, 'GPA2018NL045', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843064930306, NULL, NULL, 'GPA2018NL046', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '新款落地式带轮自动测试仪,设备已经转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843090096130, NULL, NULL, 'GPA2018NL047', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '新款落地式带轮自动测试仪,设备已经转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843106873346, NULL, NULL, 'GPA2018NL048', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843123650562, NULL, NULL, 'GPA2018NL049', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '新款落地式带轮自动测试仪,设备已经转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843144622082, NULL, NULL, 'GPA2018NL050', '传感器在线智能系统', 'YL-001A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, '新款落地式带轮自动测试仪,2014.10.14已经转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843169787906, NULL, NULL, 'GPA2018NL051', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843194953729, NULL, NULL, 'GPA2018NL052', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843215925249, NULL, NULL, 'GPA2018NL053', '传感器在线智能系统', 'YL-002A', '耘创九州智能装备有限公司', NULL, NULL, '2018-06-30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2018-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '耘创九州智能装备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843253673985, NULL, NULL, 'GPA2019NL073', '电子秤', '普瑞逊JS-A系列 JS-A06/0.1g', '成都普瑞逊电子有限公司', NULL, NULL, '2019-04-12', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海常衡电子科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843270451201, NULL, NULL, 'GPG2018NL067', '计量泵', 'VAMD07063PVC010S0000', '上海玛蒙工业设备有限公司', NULL, NULL, '2018-01-29', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海玛蒙工业设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843299811329, NULL, NULL, 'GPC2018NL078', '研华工控机', '工控机', '深圳研华科技', NULL, NULL, '2018-01-22', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海圣界电子科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843316588545, NULL, NULL, 'GPC2018NL079', '研华工控机', '工控机', '深圳研华科技', NULL, NULL, '2018-01-12', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海圣界电子科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843333365762, NULL, NULL, 'GPC2018NL080', '研华工控机', '工控机', '深圳研华科技', NULL, NULL, '2018-01-22', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海圣界电子科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843354337281, NULL, NULL, 'GPB2018NL038', '超声波模具', 'CE45', '东和超音波机械设备有限公司', NULL, NULL, '2018-09-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '东和超音波机械设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843404668929, NULL, NULL, 'GPC2019NH007', '逆变式直流氩弧焊机', 'WSM-500UⅢ;含WP-26氩弧焊矩1套及水箱', '上海沪工焊机(集团)有限公司', NULL, NULL, '2019-04-23', NULL, '环保生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2019-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海焱阳焊接设备有限公司', NULL, NULL, NULL, NULL, '说明书、合格证');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843505332225, NULL, NULL, 'GPA2019NL004', '光学仪器-显微镜', '100倍', '金华欧视朗商贸有限公司', NULL, NULL, '2019-05-21', NULL, '总工办公室', NULL, NULL, NULL, NULL, NULL, NULL, '2019-05-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '/', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843568246785, NULL, NULL, 'GPG2019NL002', '数显指示表', '数显指示表 货号:543-563DC 型号:ID-H0560', '东莞市钜工五金贸易有限公司', NULL, NULL, '2019-06-17', NULL, '研发二部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-07-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '东莞市钜工五金贸易有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843601801217, NULL, NULL, 'GPG2018NL070', '光栅尺', '解析度1um', '东莞鼎企智能自动化科技有限公司', NULL, NULL, '2018-10-22', NULL, '研发一部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-07-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '东莞鼎企智能自动化科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843652132866, NULL, NULL, 'GPB2019NL004', 'CCD按键板超声波模具', 'CCD按键 20Khz', '东和超音波机械设备有限公司', NULL, NULL, '2019-06-27', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-07-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '东和超音波机械设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843710853121, NULL, NULL, 'GPB2019NL006', '折弯机模具 (刀模)', '尖刀', '上海吉云机电设备有限公司', NULL, NULL, '2019-07-09', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2019-07-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海吉云机电设备有限公司', NULL, NULL, NULL, NULL, '2023.06.28转到安徽兰宝环保');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843740213250, NULL, NULL, 'GPB2019NL007', '折弯机模具 (刀模)', '弯刀', '上海吉云机电设备有限公司', NULL, NULL, '2019-07-09', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2019-07-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海吉云机电设备有限公司', NULL, NULL, NULL, NULL, '2023.06.28转到安徽兰宝环保');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843761184770, NULL, NULL, 'GPB2019NL008', '折弯机模具 (刀模)', '圆弧刀', '上海吉云机电设备有限公司', NULL, NULL, '2019-07-09', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2019-07-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海吉云机电设备有限公司', NULL, NULL, NULL, NULL, '2023.06.28转到安徽兰宝环保');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843786350593, NULL, NULL, 'GPC2019NH008', '压铆机', '5t 规格', '常州市泰合威机械厂', NULL, NULL, '2019-03-27', NULL, '环保生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2019-07-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '常州市泰合威机械厂', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843811516418, NULL, NULL, 'GPC2019NL138', '数控异型(激光)切割机', '长4m×宽3.2m×高1.8m', '东莞市东盟数控机械有限公司', NULL, NULL, '2019-07-09', NULL, '环保生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2019-07-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '东莞市东盟数控机械有限公司', NULL, NULL, NULL, NULL, '合格证、说明书,出厂报告,存放在沸石转轮车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843853459457, NULL, NULL, 'GPA2019NL005', '光栅尺', '钢带:MV-53-40N 读头:LIA-20-L801-WA', 'NUMERIK JENA', NULL, NULL, '2019-07-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2019-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海微敏自控技术有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843895402498, NULL, NULL, 'GPC2019NH009', 'CK 氩弧焊机', 'WS-250', '东城工具', NULL, NULL, '2019-08-05', NULL, '沸石转轮车间', NULL, NULL, NULL, NULL, NULL, NULL, '2019-08-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海岑溪实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217843991871489, NULL, NULL, 'GPC2019NL017', '工业型钻铣床', '黄山牌 XZS4020', '天长市京睿机床有限公司责任公司', NULL, NULL, '2019-07-19', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2019-08-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '天长市京睿机床有限公司责任公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844067368962, NULL, NULL, 'GPC2019NL019', '小型脱水机', 'JR400,带盖子+变频调速', '佛山市顺德区陆锦精密机械制造有限公司', NULL, NULL, '2019-08-16', NULL, '沸石转轮车间', NULL, NULL, NULL, NULL, NULL, NULL, '2019-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '佛山市顺德区陆锦精密机械制造有限公司', NULL, NULL, NULL, NULL, '沸石转轮车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844084146177, NULL, NULL, 'GPD2018NL048', '智能生产线 (9700自动线新加工站)', '9700LE68传感器调试站', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2018-08-23', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-09-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '数字化车间9700线新加工站');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844105117698, NULL, NULL, 'GOE2019NL013', '松京除湿机', '松京 DK01-T', '杭州松京电器有限公司', NULL, NULL, '2019-08-27', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-09-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '松京官方旗舰店', NULL, NULL, NULL, NULL, '用在智能仓储内部除湿');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844142866434, NULL, NULL, 'GOA2019NL220', '大屏智能电视(小米)', '65英寸 4K分辨率 软屏 黑色', '小米电器', NULL, NULL, '2019-09-13', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2019-09-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海奉浦苏宁易购销售有限公司', NULL, NULL, NULL, NULL, 'SMT线数据采集看板');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844168032258, NULL, NULL, 'GOA2019NL221', '大屏智能电视(小米)', '65英寸 4K分辨率 软屏 黑色', '小米电器', NULL, NULL, '2019-09-13', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2019-09-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海奉浦苏宁易购销售有限公司', NULL, NULL, NULL, NULL, 'SMT线数据采集看板');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844184809474, NULL, NULL, 'GPC2019NL133', '手持扫描枪', '手持扫描枪 1950 霍尼韦尔', '霍尼韦尔', NULL, NULL, '2019-09-17', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-09-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '苏州鸿兴永利电子科技有限公司', NULL, NULL, NULL, NULL, 'SMT线数据采集');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844201586690, NULL, NULL, 'GPC2019NL134', '手持扫描枪', '手持扫描枪 1950 霍尼韦尔', '霍尼韦尔', NULL, NULL, '2019-09-17', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-09-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '苏州鸿兴永利电子科技有限公司', NULL, NULL, NULL, NULL, 'SMT线数据采集');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844218363905, NULL, NULL, 'CPD2019NL114', '大理石平台-框架', 'PDA测试专用平台机柜', '上海皇闽铝业有限公司', NULL, NULL, '2019-09-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, 'PDA激光测距大理石平台底座');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844235141121, NULL, NULL, 'CPD2019NL115', '中型工作台', '中型工作台1800*1200*750', '六安飒韬机电科技有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '六安飒韬机电科技有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844247724034, NULL, NULL, 'CPD2019NL116', '中型工作台', '中型工作台1800*1200*750', '六安飒韬机电科技有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '六安飒韬机电科技有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844268695553, NULL, NULL, 'CPD2019NL117', '中型工作台', '中型工作台1800*1200*750', '六安飒韬机电科技有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '六安飒韬机电科技有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844289667073, NULL, NULL, 'CPD2019NL118', '中型工作台', '中型工作台1800*1200*750', '六安飒韬机电科技有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '六安飒韬机电科技有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844314832897, NULL, NULL, 'CPD2019NL119', '中型工作台', '中型工作台1800*1200*750', '六安飒韬机电科技有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '六安飒韬机电科技有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844339998722, NULL, NULL, 'CPD2019NL120', '中型工作台', '中型工作台1800*1200*750', '六安飒韬机电科技有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '六安飒韬机电科技有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844360970241, NULL, NULL, 'CPD2019NL121', '中型工作台', '中型工作台1800*1200*750', '六安飒韬机电科技有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '六安飒韬机电科技有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844377747457, NULL, NULL, 'CPD2019NL122', '中型工作台', '中型工作台1800*1200*750', '六安飒韬机电科技有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '六安飒韬机电科技有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844398718978, NULL, NULL, 'CPD2019NL123', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844419690497, NULL, NULL, 'CPD2019NL124', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844440662018, NULL, NULL, 'CPD2019NL125', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844503576578, NULL, NULL, 'CPD2019NL126', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844524548098, NULL, NULL, 'CPD2019NL127', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844541325314, NULL, NULL, 'CPD2019NL128', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844562296833, NULL, NULL, 'CPD2019NL129', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844583268353, NULL, NULL, 'CPD2019NL130', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844604239874, NULL, NULL, 'CPD2019NL131', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844625211394, NULL, NULL, 'CPD2019NL132', '货架', '150*60*200=4层 2主8副', '宁波市固友商贸有限公司', NULL, NULL, '2019-09-25', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁波市固友商贸有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844641988610, NULL, NULL, 'GPG2019NH004', '气体质量控制器', 'GMFC-CXC-A-N-A1-F2;介质:空气', '上海瓷熙仪器仪表有限公司', NULL, NULL, '2019-05-31', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海瓷熙仪器仪表有限公司', NULL, NULL, NULL, NULL, '沸石转轮车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844662960130, NULL, NULL, 'GPG2019NH005', '气体质量控制器', 'GMFC-CXC-A-N-A1-F2;介质:空气', '上海瓷熙仪器仪表有限公司', NULL, NULL, '2019-05-31', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海瓷熙仪器仪表有限公司', NULL, NULL, NULL, NULL, '沸石转轮车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844683931650, NULL, NULL, 'GPG2019NH006', '气体质量控制器', 'GMFC-CXC-A-N-A1-F3:介质:空气', '上海瓷熙仪器仪表有限公司', NULL, NULL, '2019-05-31', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海瓷熙仪器仪表有限公司', NULL, NULL, NULL, NULL, '沸石转轮车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844709097474, NULL, NULL, 'GPG2019NH007', '管道加热器', 'SY-DQ-2', '东台市双宇工业电炉厂', NULL, NULL, '2019-07-04', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '东台市双宇工业电炉厂', NULL, NULL, NULL, NULL, '沸石转轮车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844730068993, NULL, NULL, 'GPG2019NH008', 'IODD文件设计工具', 'ITS-BOP-IODD', 'TECONCEPT', NULL, NULL, '2019-10-11', NULL, '研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, 'TECONCEPT', NULL, NULL, NULL, NULL, '沸石转轮车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844751040514, NULL, NULL, 'GPG2019NL020', '斜切割机 DW713', '台湾得伟 DW713', '台湾DEWALT', NULL, NULL, '2019-10-08', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海渝煌五金机电有限公司', NULL, NULL, NULL, NULL, '金工车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844767817730, NULL, NULL, 'GPD2019NL133', '加香装置工作台', '680*730*1500MM详见图纸', '上海皇闽铝业有限公司', NULL, NULL, '2019-09-23', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '研发中心产品组');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844797177858, NULL, NULL, 'GPC2019NL131', '点胶机控制盒', 'D-260(内含储气罐)', '深圳市轴心自控技术有限公司', NULL, NULL, '2019-09-23', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '深圳市轴心自控技术有限公司', NULL, NULL, NULL, NULL, '传感器制造车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844822343682, NULL, NULL, 'GPC2019NL132', '点胶机控制盒', 'D-260(内含储气罐)', '深圳市轴心自控技术有限公司', NULL, NULL, '2019-09-23', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-10-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '深圳市轴心自控技术有限公司', NULL, NULL, NULL, NULL, '传感器制造车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844843315201, NULL, NULL, 'CPD2019NL134', '大理石平台(PDA测试用)', '定制大理石', '无锡佰斯特尔精密机械制造有限公司', NULL, NULL, '2019-10-22', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-11-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '无锡佰斯特尔精密机械制造有限公司', NULL, NULL, NULL, NULL, 'PDA测试平台,单一大理石');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844864286721, NULL, NULL, 'GPC2019NL135', '电源', 'Kikusui PBZ80-5', '上海精测电子有限公司', NULL, NULL, '2019-10-15', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-11-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844881063937, NULL, NULL, 'GPC2019NL136', '电源', 'Kikusui wavy for pbz Sequence Creation Softwarefor', '上海精测电子有限公司', NULL, NULL, '2019-10-22', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-11-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海精测电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844914618369, NULL, NULL, 'GOA2019NL242', '丽标号码管打印机', 'C-210E', '佳能丽标', NULL, NULL, '2019-04-10', NULL, '信息化事业部', NULL, NULL, NULL, NULL, NULL, NULL, '2019-11-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '上海岑溪实业有限公司', NULL, NULL, NULL, NULL, '附件:电源线、适配器、套管夹说明书、手提包');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844943978497, NULL, NULL, 'GPC2019NL137', 'HITACHI(日立)喷码机', 'UX-H140S', '日本HITACHI(日立)', NULL, NULL, '2019-11-08', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2019-11-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '辉泉机电设备(上海)有限公司', NULL, NULL, NULL, NULL, '随机光盘,清洗套装喷壶等');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217844973338625, NULL, NULL, 'GPA2019NL062', '高低温交变试验箱', '高低温交变试验箱 C4-180PRO+开孔', '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, '2019-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2019-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, NULL, NULL, '随机附件等');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845002698753, NULL, NULL, 'GPA2019NL063', '轨道扫描器', 'M120 210-010 DATALOGIC', '宁管自动化科技(上海)有限公司', NULL, NULL, '2019-09-30', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2019-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁管自动化科技(上海)有限公司', NULL, NULL, NULL, NULL, 'SMT线轨道数据采集');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845032058882, NULL, NULL, 'GPA2019NL064', '轨道扫描器', 'M120 210-010 DATALOGIC', '宁管自动化科技(上海)有限公司', NULL, NULL, '2019-09-30', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2019-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁管自动化科技(上海)有限公司', NULL, NULL, NULL, NULL, 'SMT线轨道数据采集');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845061419010, NULL, NULL, 'GPA2019NL065', '轨道扫描器', 'M120 210-010 DATALOGIC', '宁管自动化科技(上海)有限公司', NULL, NULL, '2019-09-30', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2019-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁管自动化科技(上海)有限公司', NULL, NULL, NULL, NULL, 'SMT线轨道数据采集');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845094973441, NULL, NULL, 'GPA2019NL066', '轨道扫描器', 'M120 210-010 DATALOGIC', '宁管自动化科技(上海)有限公司', NULL, NULL, '2019-09-30', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2019-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁管自动化科技(上海)有限公司', NULL, NULL, NULL, NULL, 'SMT线轨道数据采集');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845124333570, NULL, NULL, 'GPA2019NL067', '轨道扫描器', 'M120 210-010 DATALOGIC', '宁管自动化科技(上海)有限公司', NULL, NULL, '2019-09-30', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2019-12-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '宁管自动化科技(上海)有限公司', NULL, NULL, NULL, NULL, 'SMT线轨道数据采集');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845157888001, NULL, NULL, 'GPC2020NL137', '收卷机', 'F2100;F1500', '张家港市帝达机械有限公司', NULL, NULL, '2019-12-26', NULL, '转轮研发车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-01-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '张家港市帝达机械有限公司', NULL, NULL, NULL, NULL, '沸石转轮车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845191442433, NULL, NULL, 'GPC2020NL138', '转盘式立切机', 'Φ4600×H650mm', '扬州福达海绵机械有限公司', NULL, NULL, '2019-12-26', NULL, '转轮研发车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-01-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:47', NULL, '2025-02-14 09:53:47', NULL, '扬州福达海绵机械有限公司', NULL, NULL, NULL, NULL, '沸石转轮车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845216608258, NULL, NULL, 'GPC2020NH021', '拼装平台', '2500mm*5000mm', '泊头市国晟机械制造有限公司', NULL, NULL, '2019-12-26', NULL, '转轮研发车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-01-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '泊头市国晟机械制造有限公司', NULL, NULL, NULL, NULL, '沸石转轮车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845250162689, NULL, NULL, 'GPC2020NH022', '拼装平台', '2500mm*5000mm', '泊头市国晟机械制造有限公司', NULL, NULL, '2019-12-26', NULL, '转轮研发车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-01-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '泊头市国晟机械制造有限公司', NULL, NULL, NULL, NULL, '沸石转轮车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845275328514, NULL, NULL, 'GPG2020NL021', '上海皇闽铝业有限公司', 'HM190423 1MB19210 (基恩士激光刻印机机柜)', '上海皇闽铝业有限公司', NULL, NULL, '2019-10-03', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2020-01-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '用于基恩士激光刻印机设备');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845300494337, NULL, NULL, 'GPA2020NL068', '光电测量仪器*信号源', '3030-01', '北京信测科技有限公司', NULL, NULL, '2019-09-09', NULL, 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2020-01-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '北京信测科技有限公司', NULL, NULL, NULL, NULL, '此设备为2018年EMC实验室升级改造替换品,原来3010厂家回收');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845329854466, NULL, NULL, 'GPG2020NL022', '隔振光学平台', '隔振光学平台 600*1200*100', '河北成利朋电器设备有限公司', NULL, NULL, '2020-01-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2020-01-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '河北成利朋电器设备有限公司', NULL, NULL, NULL, NULL, '研发部马路明请购使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845355020290, NULL, NULL, 'GPC2020NL143', '胶带切割机', 'cut-870', '昆山浩卓自动化设备有限公司', NULL, NULL, '2020-01-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2020-01-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '昆山浩卓自动化设备有限公司', NULL, NULL, NULL, NULL, '传感器制造车间四线王秋娟用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845371797505, NULL, NULL, 'GPA2020NL069', '密封监测系统 TTL-W016', '密封监测系统 TTL-W016', '上海仁莫电子科技有限公司', NULL, NULL, '2019-12-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2020-01-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海仁莫电子科技有限公司', NULL, NULL, NULL, NULL, '气密性检测设备');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845392769025, NULL, NULL, 'GPD2020NL134', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845413740545, NULL, NULL, 'GPD2020NL135', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845451489282, NULL, NULL, 'GPD2020NL136', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845476655106, NULL, NULL, 'GPD2020NL137', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845497626626, NULL, NULL, 'GPD2020NL138', '货架', '150*60*200=4层副280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845514403842, NULL, NULL, 'GPD2020NL139', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845531181057, NULL, NULL, 'GPD2020NL140', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845547958273, NULL, NULL, 'GPD2020NL141', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845564735489, NULL, NULL, 'GPD2020NL142', '货架', '150*60*200=4层副280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845585707009, NULL, NULL, 'GPD2020NL143', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845606678529, NULL, NULL, 'GPD2020NL144', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845619261441, NULL, NULL, 'GPD2020NL145', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845640232962, NULL, NULL, 'GPD2020NL146', '货架', '150*60*200=4层副280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845661204481, NULL, NULL, 'GPD2020NL147', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845673787394, NULL, NULL, 'GPD2020NL148', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845690564610, NULL, NULL, 'GPD2020NL149', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845711536129, NULL, NULL, 'GPD2020NL150', '货架', '150*60*200=4层副280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845728313346, NULL, NULL, 'GPD2020NL151', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845745090562, NULL, NULL, 'GPD2020NL152', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845757673474, NULL, NULL, 'GPD2020NL153', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845774450690, NULL, NULL, 'GPD2020NL154', '货架', '150*60*200=4层副280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845791227905, NULL, NULL, 'GPD2020NL155', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845812199426, NULL, NULL, 'GPD2020NL156', '货架', '150*60*200=4层主280KG', '宁波市固全仓储设备有限公司', NULL, NULL, '2020-03-23', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宁波市固全仓储设备有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845824782337, NULL, NULL, 'GPD2020NL160', '防静电工作台', '长180*宽120*总高175双面(含灯架', '苏州四万家具有限公司', NULL, NULL, '2020-03-26', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845841559553, NULL, NULL, 'GPD2020NL161', '防静电工作台', '长180*宽120*总高175双面(含灯架', '苏州四万家具有限公司', NULL, NULL, '2020-03-26', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845854142466, NULL, NULL, 'GPD2020NL162', '防静电工作台', '长180*宽120*总高175双面(含灯架', '苏州四万家具有限公司', NULL, NULL, '2020-03-26', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845866725378, NULL, NULL, 'GPD2020NL163', '防静电工作台', '长180*宽120*总高175双面(含灯架', '苏州四万家具有限公司', NULL, NULL, '2020-03-26', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845883502594, NULL, NULL, 'GPD2020NL164', '防静电工作台', '长180*宽120*总高175双面(含灯架', '苏州四万家具有限公司', NULL, NULL, '2020-03-26', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845900279809, NULL, NULL, 'GPD2020NL165', '防静电工作台', '长180*宽120*总高175双面(含灯架', '苏州四万家具有限公司', NULL, NULL, '2020-03-26', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845917057026, NULL, NULL, 'GPD2020NL166', '防静电工作台', '长180*宽120*总高175双面(含灯架', '苏州四万家具有限公司', NULL, NULL, '2020-03-26', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845933834241, NULL, NULL, 'GPD2020NL167', '防静电工作台', '长180*宽120*总高175双面(含灯架', '苏州四万家具有限公司', NULL, NULL, '2020-03-26', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845946417153, NULL, NULL, 'GPG2020NL023', '安卓不干胶二维码标签手持扫描复制打印一体', '手持扫描打印一体', '深圳市群索科技有限公司', NULL, NULL, '2019-07-17', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市群索科技有限公司', NULL, NULL, NULL, NULL, '数字车间建设时候购买');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845959000066, NULL, NULL, 'GOA2020NL011', '台电X4 11.6英寸平板电脑', '台电X4 11.6寸 win10系统', '台积电科技有限公司', NULL, NULL, '2020-04-17', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海签成企业管理有限公司', NULL, NULL, NULL, NULL, 'SMT用IPQC检验核对资料用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845984165890, NULL, NULL, 'GPC2020NH023', '单工位收卷机', '收卷直径1500mm,工作幅宽800mm', '张家港市帝达机械有限公司', NULL, NULL, '2020-04-09', NULL, '沸石转轮车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '张家港市帝达机械有限公司', NULL, NULL, NULL, NULL, '沸石转轮车间研发使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217845996748802, NULL, NULL, 'GPC2020NL146', '压排线设备', '气动,间距1.27,4P-64P', '东莞市常平腾达机械厂', NULL, NULL, '2020-04-10', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '东莞市常平腾达机械厂', NULL, NULL, NULL, NULL, '用于细纱机项目及欧瑞康产品');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846013526017, NULL, NULL, 'GPG2020NL027', '真空干燥箱', 'DZF-6020AB', '湖南力辰仪器科技有限公司', NULL, NULL, '2020-04-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '湖南力辰仪器科技有限公司', NULL, NULL, NULL, NULL, '研发中心实验室使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846026108930, NULL, NULL, 'GPG2020NL028', '旋片式真空泵', '2XZ-2', '湖南力辰仪器科技有限公司', NULL, NULL, '2020-04-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '湖南力辰仪器科技有限公司', NULL, NULL, NULL, NULL, '研发中心实验室使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846047080449, NULL, NULL, 'GPD2020NL168', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846059663362, NULL, NULL, 'GPD2020NL169', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846076440577, NULL, NULL, 'GPD2020NL170', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846093217793, NULL, NULL, 'GPD2020NL171', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846122577922, NULL, NULL, 'GPD2020NL172', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846139355138, NULL, NULL, 'GPD2020NL173', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846164520962, NULL, NULL, 'GPD2020NL174', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846185492482, NULL, NULL, 'GPD2020NL175', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846214852609, NULL, NULL, 'GPD2020NL176', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846235824129, NULL, NULL, 'GPD2020NL177', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846256795650, NULL, NULL, 'GPD2020NL178', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846277767169, NULL, NULL, 'GPD2020NL179', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846307127298, NULL, NULL, 'GPD2020NL180', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846357458946, NULL, NULL, 'GPD2020NL181', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846391013378, NULL, NULL, 'GPD2020NL182', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846428762113, NULL, NULL, 'GPD2020NL183', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846449733633, NULL, NULL, 'GPD2020NL184', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846466510850, NULL, NULL, 'GPD2020NL185', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846483288066, NULL, NULL, 'GPD2020NL186', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846508453889, NULL, NULL, 'GPD2020NL187', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846521036802, NULL, NULL, 'GPD2020NL188', '工作台', '定制立式工作台60*80*2000cm', '上海昶申铝业有限公司', NULL, NULL, '2020-04-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846537814018, NULL, NULL, 'GPD2020NL189', '工作台 灯架', '工作台后加装灯架', '苏州四万家具有限公司', NULL, NULL, '2020-04-07', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846554591234, NULL, NULL, 'GPD2020NL190', '工作台 灯架', '工作台后加装灯架', '苏州四万家具有限公司', NULL, NULL, '2020-04-07', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846571368450, NULL, NULL, 'GPD2020NL191', '工作台 灯架', '工作台后加装灯架', '苏州四万家具有限公司', NULL, NULL, '2020-04-07', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846588145666, NULL, NULL, 'GPD2020NL192', '工作台 灯架', '工作台后加装灯架', '苏州四万家具有限公司', NULL, NULL, '2020-04-07', NULL, '细纱机车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-04-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州四万家具有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846604922881, NULL, NULL, 'GPC2020NL147', '低压注塑设备', 'LPMS 2000,双工位', '东莞市天赛塑胶机械有限公司', NULL, NULL, '2020-04-24', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2020-05-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '牧蔓电子科技(上海)有限公司', NULL, NULL, NULL, NULL, '细纱机车间,新大楼三楼,2023年7月转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846621700098, NULL, NULL, 'GPC2020NH024', '气保焊机', '上海沪工NB-350E', '上海沪工焊接集团股份有限公司', NULL, NULL, '2020-05-26', NULL, '沸石转轮车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海焱阳焊接设备有限公司', NULL, NULL, NULL, NULL, '沸石转轮车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846634283010, NULL, NULL, 'GPC2020NH025', '空压机', '4*1100-160L', '台州市奥突斯工贸有限公司', NULL, NULL, '2020-05-26', NULL, '沸石转轮车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海真毅电子商务有限公司', NULL, NULL, NULL, NULL, '沸石转轮车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846651060225, NULL, NULL, 'GPA2020NL073', '工作台(高低温周边用)', '定制规格', '上海昶申铝业有限公司', NULL, NULL, '2020-05-28', NULL, '实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '实物为高低温设备旁边放置测试仪、示波器等设备用的小工作台');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846663643137, NULL, NULL, 'GPC2020NL149', 'SMT上板机', '标准款HY-250LD', '东莞市华研电子科技有限公司', NULL, NULL, '2020-05-19', NULL, 'SMT线3', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, '新SMT线配置设备,欣木');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846680420354, NULL, NULL, 'GPC2020NL150', 'SMT收板机', '标准款', '东莞市华研电子科技有限公司', NULL, NULL, '2020-05-19', NULL, 'SMT线3', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, '新SMT线配置设备,欣木新');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846697197570, NULL, NULL, 'GPC2020NL151', 'SMT接驳台', '0.5米规格', '东莞市华研电子科技有限公司', NULL, NULL, '2020-05-19', NULL, 'SMT线3', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, '新SMT线配置设备,欣木新');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846709780482, NULL, NULL, 'GPC2020NL152', 'SMT接驳台', '0.5米规格', '东莞市华研电子科技有限公司', NULL, NULL, '2020-05-19', NULL, 'SMT线3', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, '新SMT线配置设备,欣木新');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846726557698, NULL, NULL, 'GPC2020NL153', 'SMT接驳台', '0.5米规格', '东莞市华研电子科技有限公司', NULL, NULL, '2020-05-19', NULL, 'SMT线3', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, '新SMT线配置设备,欣木新');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846743334914, NULL, NULL, 'GPC2020NL154', 'SMT接驳台', '0.5米规格', '东莞市华研电子科技有限公司', NULL, NULL, '2020-05-19', NULL, 'SMT线3', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, '新SMT线配置设备,欣木新');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846760112130, NULL, NULL, 'GPC2020NL155', 'SMT接驳台', '1.20米规格', '东莞市华研电子科技有限公司', NULL, NULL, '2020-05-19', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, '新SMT线配置设备,欣木新,2021.12月搬迁至安徽工厂');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846776889346, NULL, NULL, 'GPA2020NL074', 'KohYoung在线3D SPI', '韩国科样8030-3', '韩国KOYUNG 科样电子设备', NULL, NULL, '2020-05-19', NULL, 'SMT线3', NULL, NULL, '合同价:34万', NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, '新SMT线配置设备,欣木二手,两台设备票开在一起,编号同');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846789472257, NULL, NULL, 'GPA2020NL074-2', '德律在线3D AOI', 'TR7700_SIII', '台湾德律科技股份有限公司', NULL, NULL, '2020-05-19', NULL, 'SMT线3', NULL, NULL, '合同价:31万', NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846806249474, NULL, NULL, 'GPC2020NL156', 'GKG全自动锡膏印刷机', 'GKG G5新款', '东莞凯格精密电子设备有限公司', NULL, NULL, '2020-05-19', NULL, 'SMT线3', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子科技有限公司', NULL, NULL, NULL, NULL, '新SMT线配置设备,欣木新');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846823026690, NULL, NULL, 'GPC2020NL157', '超音波塑胶熔接机', '东和 ATGS-2025E 网络版', '东和超音波机械设备有限公司', NULL, NULL, '2020-05-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '新购买设备,用于PSE');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846839803906, NULL, NULL, 'GPB2020NL046', 'CNC维修专用台虎钳', '8寸带底T牙', '上海赛格电子', NULL, NULL, '2020-04-14', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-06-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海赛格电子', NULL, NULL, NULL, NULL, '金工车间NX36加工中心用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846856581121, NULL, NULL, 'GPA2020NL077', '测试台(测试用平台架)', '规格:600*520*800 图纸号:1MB20261(V3.0)', '上海皇闽铝业有限公司', NULL, NULL, '2020-07-23', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2020-07-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '实物为测试用平台架子,非测试仪,研发赵冀使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846869164034, NULL, NULL, 'GPC2020NL160', 'NG/OK 收板机', '标准左到右 NLS250-2', '深圳市德科绿阳科技发展有限公司', NULL, NULL, '2020-07-28', NULL, 'SMT线3', NULL, NULL, NULL, NULL, NULL, NULL, '2020-08-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市德科绿阳科技发展有限公司', NULL, NULL, NULL, NULL, '新添SMT线,在线AOI后端使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846885941249, NULL, NULL, 'GPA2020NL078', 'LCR数字电桥', '同惠,TH2810B+ 10kHZ 0.1%精度', '常州同恵电子有限公司', NULL, NULL, '2020-08-10', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2020-08-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市仪表世界连锁店有限公司', NULL, NULL, NULL, NULL, '质量管理部 IQC使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846902718466, NULL, NULL, 'GPC2020NH029', '空压机', '4*110-160L', '奥突斯厂家', NULL, NULL, '2020-09-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2020-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海真毅电子商务有限公司', NULL, NULL, NULL, NULL, '合格证,说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846919495682, NULL, NULL, 'GPC2020NH030', '手动液压车', 'NPL25-510', '上海长锦机电设备有限公司', NULL, NULL, '2020-09-17', NULL, '环保生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海长锦机电设备有限公司', NULL, NULL, NULL, NULL, '合格证,说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846936272897, NULL, NULL, 'GPC2020NH031', '手动液压车', 'NPL25-510', '上海长锦机电设备有限公司', NULL, NULL, '2020-09-17', NULL, '环保生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海长锦机电设备有限公司', NULL, NULL, NULL, NULL, '合格证,说明书');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217846948855810, NULL, NULL, 'GPC2020NL162', '自动绕线机(扎线机)', '扎线机', '东莞市博强自动化设备有限公司', NULL, NULL, '2020-09-03', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2020-09-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '东莞市博强自动化设备有限公司', NULL, NULL, NULL, NULL, '更换过大功率电机,增加30%力');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847280205825, NULL, NULL, 'GPB2020NH023', '夹具', '沸石转轮用夹具', '常州维克低温设备有限公司', NULL, NULL, '2020-10-09', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '常州维克低温设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847301177346, NULL, NULL, 'GPB2020NH024', '夹具', '沸石转轮用夹具', '常州维克低温设备有限公司', NULL, NULL, '2020-10-09', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '常州维克低温设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847322148866, NULL, NULL, 'GPC2020NL170', '出锡机', 'QUICK 373C', '快克智能装备股份有限公司', NULL, NULL, '2020-11-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '快克936无铅焊台配套使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847338926082, NULL, NULL, 'GPC2020NL171', '出锡机', 'QUICK 373C', '快克智能装备股份有限公司', NULL, NULL, '2020-11-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '快克936无铅焊台配套使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847355703297, NULL, NULL, 'GPC2020NL172', '出锡机', 'QUICK 373C', '快克智能装备股份有限公司', NULL, NULL, '2020-11-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '快克936无铅焊台配套使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847372480514, NULL, NULL, 'GPC2020NL174', '氩弧焊机', '沪工WSM-400E', '上海沪工焊机(集团)有限公司', NULL, NULL, '2020-11-10', NULL, '信息化事业部', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海焱阳焊接设备有限公司', NULL, NULL, NULL, NULL, '中草药机用,信息事业部使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847397646337, NULL, NULL, 'GPC2020NL175', '剥线机', 'ZKS-12(非全新,二手设备)', '上海誉纯电子有限公司', NULL, NULL, '2020-11-10', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子有限公司', NULL, NULL, NULL, NULL, '二手设备,前加工使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847418617857, NULL, NULL, 'GPC2020NL176', '剥线机', 'HC-515(非全新,二手设备)', '上海誉纯电子有限公司', NULL, NULL, '2020-11-10', '4', '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子有限公司', NULL, NULL, NULL, NULL, '二手设备,前加工使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847431200769, NULL, NULL, 'GPC2020NL177', 'HAKKO送线机', 'MK-005(非全新,二手设备)', '日本HAKKO', NULL, NULL, '2020-11-10', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子有限公司', NULL, NULL, NULL, NULL, '二手设备,前加工使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847447977985, NULL, NULL, 'GPC2020NL178', '拉力机(计)', 'MK-1000N(非全新,二手设备)', '上海誉纯电子有限公司', NULL, NULL, '2020-11-10', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海誉纯电子有限公司', NULL, NULL, NULL, NULL, '二手设备,前加工使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847464755202, NULL, NULL, 'GPC2020NL179', '标签剥离机', 'BSC-110', '上海岳感电子有限公司', NULL, NULL, '2020-11-10', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海岳感电子有限公司', NULL, NULL, NULL, NULL, '检包线使用设备');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847481532418, NULL, NULL, 'GPC2020NL180', '标签剥离机', 'BSC-110', '上海岳感电子有限公司', NULL, NULL, '2020-11-10', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2020-11-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海岳感电子有限公司', NULL, NULL, NULL, NULL, '检包线使用设备');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847498309634, NULL, NULL, 'GPC2020NH037', '瓦楞机', '直径214mm,45号钢', '江阴市康维机械制造有限公司', NULL, NULL, '2020-12-07', NULL, '转轮研发车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-12-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '江阴市康维机械制造有限公司', NULL, NULL, NULL, NULL, '沸石转轮车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847536058370, NULL, NULL, 'GPC2020NH038', '翻转机', '0-90度翻转', '上海宝锻机械制造有限公司', NULL, NULL, '2020-12-07', NULL, '转轮研发车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-12-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海宝锻机械制造有限公司', NULL, NULL, NULL, NULL, '沸石转轮车间研发方向');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847552835585, NULL, NULL, 'GPC2020NL186', '自动绕线扎线机', 'BOQO2000型 扎带范围80-140mm', '东莞市博强自动化设备有限公司', NULL, NULL, '2020-12-14', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2020-12-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '东莞市博强自动化设备有限公司', NULL, NULL, NULL, NULL, '前加工使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847565418498, NULL, NULL, 'GPC2020NH046', '电子地磅', 'SCS-1T', '上海奕宇电子科技有限公司', NULL, NULL, '2020-12-30', NULL, '沸石转轮车间', NULL, NULL, NULL, NULL, NULL, NULL, '2020-12-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海奕宇电子科技有限公司', NULL, NULL, NULL, NULL, '沸石转轮车间研发方向');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847582195714, NULL, NULL, 'GPC2021NL188', '多通道电源', 'GPS-3030CDD 固纬', '台湾固纬电子', NULL, NULL, '2020-12-01', NULL, '研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市仪表世界连所店有限公司', NULL, NULL, NULL, NULL, '沸石转轮车间研发方向');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847598972930, NULL, NULL, 'GPC2021NL189', '多通道电源', 'GPS-3030CDD 固纬', '台湾固纬电子', NULL, NULL, '2020-12-01', NULL, '研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市仪表世界连所店有限公司', NULL, NULL, NULL, NULL, '沸石转轮车间研发方向');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847619944450, NULL, NULL, 'GPB2021NL049', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '传感器车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847632527361, NULL, NULL, 'GPB2021NL050', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '传感器车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847653498882, NULL, NULL, 'GPB2021NL051', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '传感器车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847670276097, NULL, NULL, 'GPB2021NL052', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '传感器车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847687053313, NULL, NULL, 'GPB2021NL053', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '传感器车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847703830530, NULL, NULL, 'GPB2021NL054', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '传感器车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847724802049, NULL, NULL, 'GPB2021NL055', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '传感器车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847741579266, NULL, NULL, 'GPB2021NL056', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '传感器车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847758356482, NULL, NULL, 'GPB2021NL057', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '传感器车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847833853953, NULL, NULL, 'GPB2021NL058', '智能无铅焊台', 'QUICK 203', '快克智能装备股份有限公司', NULL, NULL, '2020-12-20', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '传感器车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847863214081, NULL, NULL, 'GPC2021NL192', '超音波塑胶熔接机', 'ATGS-3512e', '东和超音波机械设备有限公司', NULL, NULL, '2021-01-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '昆山新东和超音波设备有限公司', NULL, NULL, NULL, NULL, '传感器车间使用,2024.05.20转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847892574209, NULL, NULL, 'GPD2021NL201', '大理石平台框架', '定制铝合金框架', '上海皇闽铝业有限公司', NULL, NULL, '2021-01-22', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, '传感器车间使用PDA测试平台');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847917740033, NULL, NULL, 'GPD2021NL202', '大理石平台', '1600*600*150', '无锡佰斯特尔精密机械制造有限公司', NULL, NULL, '2021-01-22', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-01-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '无锡佰斯特尔精密机械制造有限公司', NULL, NULL, NULL, NULL, '传感器车间使用PDA测试平台');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847942905857, NULL, NULL, 'GPC2021NL196', '全自动点料机', 'dps-682', '深圳市嘉睿轩自动化科技有限公司', NULL, NULL, '2021-01-23', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2021-02-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市嘉睿轩自动化科技有限公司', NULL, NULL, NULL, NULL, 'SMT线点料盘点用,2024.06.27转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217847976460289, NULL, NULL, 'GPC2021NL197', '全自动打包机', 'MH101A', '杭州永创', NULL, NULL, '2021-03-01', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-03-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '名玥智能设备(上海)有限公司', NULL, NULL, NULL, NULL, '成品仓库使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848001626114, NULL, NULL, 'GPC2021NL198', 'YAMAHA贴片机', 'YSM-20R', '日本YAMAHA', NULL, NULL, '2021-03-10', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2021-03-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, 'SMT2线新加设备');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848026791938, NULL, NULL, 'GPC2021NL199', 'TOYO 电缸(加驱动器)', 'CTH5-L5-150-M-TC100-01', '日本TOYO', NULL, NULL, '2021-04-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海全岩自动化科技有限公司', NULL, NULL, NULL, NULL, '用于自动测试仪升级改造配件');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848056152066, NULL, NULL, 'GPC2021NL200', 'TOYO 电缸(加驱动器)', 'CTH5-L5-150-M-TC100-01', '日本TOYO', NULL, NULL, '2021-04-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海全岩自动化科技有限公司', NULL, NULL, NULL, NULL, '用于自动测试仪升级改造配件');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848081317890, NULL, NULL, 'GPC2021NL201', '示波器(周立功)', 'ZDS2024B Plus', '广州致远电子有限公司', NULL, NULL, '2021-04-13', NULL, '研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海旭仪测控科技有限公司', NULL, NULL, NULL, NULL, '研发使用,周立功大四通');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848106483714, NULL, NULL, 'GPC2021NL202', 'QUICK 三轴平台', 'ET8383-不含点胶头及控制器', '快克智能装备股份有限公司', NULL, NULL, '2021-04-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '用于自动烧录程序研究方向');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848135843842, NULL, NULL, 'GPC2021NL203', '示波器(周立功)', 'ZDS1104 plus', '广州致远电子有限公司', NULL, NULL, '2021-04-13', NULL, '研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海旭仪测控科技有限公司', NULL, NULL, NULL, NULL, '研发使用,周立功小四通');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848161009665, NULL, NULL, 'GPC2021NL204', '示波器(周立功)', 'ZDS1104 plus', '广州致远电子有限公司', NULL, NULL, '2021-04-13', NULL, '研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海旭仪测控科技有限公司', NULL, NULL, NULL, NULL, '研发使用,周立功小四通');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848177786881, NULL, NULL, 'GPC2021NL205', '示波器(周立功)', 'ZDS1104 plus', '广州致远电子有限公司', NULL, NULL, '2021-04-13', NULL, '研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海旭仪测控科技有限公司', NULL, NULL, NULL, NULL, '研发使用,周立功小四通');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848198758401, NULL, NULL, 'GPC2021NL206', '单色油蛊移印机', '单色机', '上海盈辉机械设备有限公司', NULL, NULL, '2021-04-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2021-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海盈辉机械设备有限公司', NULL, NULL, NULL, NULL, '移印间设备,2022.11.15调拨到安徽兰宝,胡安华使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848219729922, NULL, NULL, 'GOE2021NL052', '美的空调', '三匹变频空调(380V)', '广东美的制冷设备有限公司', NULL, NULL, '2021-04-15', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海隽扬实业有限公司', NULL, NULL, NULL, NULL, '资材课老楼二楼恒温仓');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848236507137, NULL, NULL, 'GPD2021NL204', '无铅焊台', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '制造课新增');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848257478657, NULL, NULL, 'GPD2021NL205', '无铅焊台', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '制造课新增');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848274255874, NULL, NULL, 'GPD2021NL206', '无铅焊台', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '制造课新增');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848295227394, NULL, NULL, 'GPD2021NL207', '无铅焊台', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '制造课新增');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848312004610, NULL, NULL, 'GPD2021NL208', '无铅焊台', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '制造课新增');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848337170433, NULL, NULL, 'GPC2021NL207', '高低温交变试验箱', 'C4-180PRO', '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, '2021-05-06', NULL, '标准部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, NULL, NULL, '原研发请购,2024.2.28转移到标准部3楼(质量管理部)');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848349753346, NULL, NULL, 'GPC2021NL209', '线材摇摆试验机', '180度智能触摸屏', '广东艾瑞斯仪器科技有限公司', NULL, NULL, '2021-05-06', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '广东艾瑞斯仪器科技有限公司', NULL, NULL, NULL, NULL, '质量管理部 IQC使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848370724866, NULL, NULL, 'GPC2021NL210', '高明铁电动滑台组件', 'GKA60110-1280-12P-P20-CD-57', '高明铁', NULL, NULL, '2021-04-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '东莞鼎企智能自动化科技有限公司', NULL, NULL, NULL, NULL, 'PDA激光测距大理石平台组件');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848387502082, NULL, NULL, 'GPC2021NL211', '高明铁电动滑台组件', 'GKA60110-1280-12P-P20-CD-57', '高明铁', NULL, NULL, '2021-04-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '东莞鼎企智能自动化科技有限公司', NULL, NULL, NULL, NULL, 'PDA激光测距大理石平台组件');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848404279297, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848421056514, NULL, NULL, 'GPC2022NH056', '戴尔电脑(显示器)', '21.5英寸( 显示屏)', '戴尔', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海签成企业管理有限公司', NULL, NULL, NULL, NULL, 'PDA激光测距大理石平台组件');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848437833730, NULL, NULL, 'GOA2021NL010', '戴尔电脑(PDA平台用)', '8g i5-1t(主机)', '戴尔', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海签成企业管理有限公司', NULL, NULL, NULL, NULL, 'PDA激光测距大理石平台组件');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848454610946, NULL, NULL, 'GOA2021NL011', '戴尔电脑(显示器)', '21.5英寸( 显示屏)', '戴尔', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海签成企业管理有限公司', NULL, NULL, NULL, NULL, 'PDA激光测距大理石平台组件');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848475582466, NULL, NULL, 'GOA2021NL012', '戴尔电脑(PDA平台用)', '8g i5-1t(主机)', '戴尔', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海签成企业管理有限公司', NULL, NULL, NULL, NULL, 'PDA激光测距大理石平台组件');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848492359681, NULL, NULL, 'GPC2021NL213', '剥皮扭线机', '3fn气动', '深圳亿佳机械', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳亿佳机械(淘宝买)', NULL, NULL, NULL, NULL, '前加工线材加工使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848509136898, NULL, NULL, 'GPC2021NL214', '三刷带扭线机', 'jdc精达昌', '深圳市精达昌科技有限公司', NULL, NULL, '2021-05-13', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市精达昌科技有限公司(淘宝)', NULL, NULL, NULL, NULL, '前加工线材加工使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848530108417, NULL, NULL, 'GPA2021NL087', '加压防水测试仪', 'IK-IPLT-20ZDS 7 寸触摸屏+曲线控压', '上海煜南仪器有限公司', NULL, NULL, '2021-04-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海煜南仪器有限公司', NULL, NULL, NULL, NULL, '研发实验室使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848551079937, NULL, NULL, 'GPD2021NL211', '货架', '2000*600*2000cm', '上海皓臻工业设备有限公司', NULL, NULL, '2021-05-06', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-05-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '封灌间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848567857154, NULL, NULL, 'GPC2021NL215', '剥皮焊线机', 'jc-h-553', '深圳市精驰自动化', NULL, NULL, '2021-04-01', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市精驰自动化 (淘宝)', NULL, NULL, NULL, NULL, '实用于短线焊接,朱万婷线用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848584634369, NULL, NULL, 'GPC2021NL217', '钻攻加工中心', 'HD-T640 CNC', '江苏厚道数控科技有限公司', NULL, NULL, '2021-06-12', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2021-06-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '江苏厚道数控科技有限公司', NULL, NULL, NULL, NULL, '金加工车间新加设备');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848605605890, NULL, NULL, 'GPC2021NL218', '封口机', 'FR600', '浙江鼎业机械设备有限公司', NULL, NULL, '2021-06-12', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2021-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '浙江鼎业机械设备有限公司', NULL, NULL, NULL, NULL, '检测包装线使用设备,2024.09.24转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848622383106, NULL, NULL, 'GPC2021NL219', '高精密立式注塑机', 'TY-400,螺杆直径Φ18mm,锁模力40T', '昆山奥维兹机械设备有限公司', NULL, NULL, '2021-06-12', '1', '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2021-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '杭州大禹机械设备', NULL, NULL, NULL, NULL, '2023.01.10转移到安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848634966017, NULL, NULL, 'GOA2021NL017', '台式电脑 (主机)', '戴尔电脑8g i5-1t-21.5英寸屏', '戴尔电脑', NULL, NULL, '2021-06-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海岩阳商贸有限公司', NULL, NULL, NULL, NULL, '叶益诚电梯曳引传感器项目使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848651743234, NULL, NULL, 'GOA2021NL018', '台式电脑 (显示器)', '戴尔电脑8g i5-1t-21.5英寸屏', '戴尔电脑', NULL, NULL, '2021-06-12', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海岩阳商贸有限公司', NULL, NULL, NULL, NULL, '叶益诚电梯曳引传感器项目使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848668520450, NULL, NULL, 'NPG2021H006', '电子秤', '500G/0.001', '东阳市英衡智能设备有限公司', NULL, NULL, '2021-06-21', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2021-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '东阳市英衡智能设备有限公司', NULL, NULL, NULL, NULL, '封灌间配比胶使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848685297666, NULL, NULL, 'GPC2021WL001', '高精度通用烫压台', '通用款', '上海兰宝传感科技股份有限公司', NULL, NULL, '2021-06-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海兰宝传感科技股份有限公司', NULL, NULL, NULL, NULL, '自制电机控制高精度烫压治具台');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848702074881, NULL, NULL, 'GPC2021NL222', '进口高低温试验箱', 'labEvent L T/54/40/3', '伟思富奇环境试验仪器太仓有限公司(德国原装进口)', NULL, NULL, '2021-03-16', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2021-07-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '伟思富奇环境试验仪器太仓有限公司', NULL, NULL, NULL, NULL, '德国伟思富奇,定制设备64L');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848718852097, NULL, NULL, 'GPB2021NL061', '加工中心平口钳', 'HVL-160V', '昆山鑫雄鹰精密机械有限公司', NULL, NULL, '2021-07-01', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2021-07-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '昆山鑫雄鹰精密机械有限公司', NULL, NULL, NULL, NULL, '用于厚道加工中心');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848735629313, NULL, NULL, 'GPB2021NL062', '加工中心平口钳', 'HVL-160V', '昆山鑫雄鹰精密机械有限公司', NULL, NULL, '2021-07-01', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2021-07-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '昆山鑫雄鹰精密机械有限公司', NULL, NULL, NULL, NULL, '用于厚道加工中心');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848819515394, NULL, NULL, 'NPG2021NL007', '电子秤', '30kg/2g', '苏州淮宏电子有限公司', NULL, NULL, '2021-07-09', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2021-07-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州淮宏电子有限公司', NULL, NULL, NULL, NULL, '仓库张桃使用,购于淘宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848844681217, NULL, NULL, 'GPC2021NL224', '分板机(和椿)', 'AUO 3000 -UC', '和椿自动化设备有限公司', NULL, NULL, '2021-07-05', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2021-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州昆创电子科技有限公司', NULL, NULL, NULL, NULL, '前加工使用,位于SMT线末端');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848861458434, NULL, NULL, 'GPC2021NL226', '自动灌胶机', 'SEC-3030B', '苏州世椿新能源', NULL, NULL, '2021-06-28', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2021-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '苏州世椿新能源', NULL, NULL, NULL, NULL, '封灌间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848878235650, NULL, NULL, 'GPG2021NL040', '防爆柜', '22加仑', '宿迁企德金属科技有限公司', NULL, NULL, '2021-07-19', NULL, '材料仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2021-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '宿迁企德金属科技有限公司', NULL, NULL, NULL, NULL, '用于材料库存放危化品使用。');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848895012866, NULL, NULL, 'GPC2021NL227', '工业集尘器', 'DL-2200-80', '江苏全风环保科技有限公司', NULL, NULL, '2021-07-10', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '江苏全风环保科技有限公司', NULL, NULL, NULL, NULL, '用于新和椿分板机,在移印间门口');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848920178690, NULL, NULL, 'GPA2021NL096', '电子负载', 'IT8511B+', '深圳市仪表世界连锁店有限公司', NULL, NULL, '2021-07-19', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市仪表世界连锁店有限公司', NULL, NULL, NULL, NULL, '研发瞿庆颜使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848945344514, NULL, NULL, 'GPB2021NL064', '超音波模具(35khz)', 'PST-YC滤光片超声波模具', '昆山东和超声波设备有限公司', NULL, NULL, '2021-07-12', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '用于新产品PST-YC滤光片');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848974704641, NULL, NULL, 'GPG2021NL041', '固纬直流电源', '型号GPS-3030DD', '苏州固纬电子', NULL, NULL, '2021-08-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市仪表世界连锁店有限公司', NULL, NULL, NULL, NULL, '研发部请购的仪器');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217848995676162, NULL, NULL, 'GPG2021NL042', '固纬直流电源', '型号GPS-3030DD', '苏州固纬电子', NULL, NULL, '2021-08-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2021-08-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市仪表世界连锁店有限公司', NULL, NULL, NULL, NULL, '研发部请购的仪器');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849020841985, NULL, NULL, 'GPC2021NL228', '除尘式砂轮机', 'MC3025', '杭州西恒机械有限公司', NULL, NULL, '2021-08-18', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2021-09-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '杭州西恒机械有限公司', NULL, NULL, NULL, NULL, '安监部门要求');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849041813505, NULL, NULL, 'GPB2021NL065', '数控分度盘', 'THRT-5AX-AR170', '嘉兴天合机械有限公司', NULL, NULL, '2021-08-16', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2021-09-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '嘉兴天合机械有限公司', NULL, NULL, NULL, NULL, '金工间有道加工中心加装机构');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849071173633, NULL, NULL, 'GPA2021NL097', '盐雾实验机', 'AOTSI-90H', '东莞市澳腾斯仪器有限公司', NULL, NULL, '2021-10-17', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-11-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '东莞市澳腾斯仪器有限公司', NULL, NULL, NULL, NULL, '质量实验室');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849100533761, NULL, NULL, 'GOB2021NL038', '标签打印机', 'BTP-6300I', '山东新北洋信息技术股份有限公司', NULL, NULL, '2021-10-08', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2021-11-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '南京力凯斯网络科技有限公司', NULL, NULL, NULL, NULL, '淘宝购买,用于检包线小标签');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849121505281, NULL, NULL, 'GPC2021NL229', '示波器 (周立功)', 'ZDS2024B plus', '广州致远电子有限公司', NULL, NULL, '2021-10-09', NULL, '兰埔研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2021-11-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海旭仪测控科技有限公司', NULL, NULL, NULL, NULL, '兰埔研发中心李良庭请购使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849142476801, NULL, NULL, 'GPC2021NL230', '剥皮焊线机', 'jc-h-553', '深圳市精驰自动化', NULL, NULL, '2021-04-01', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2021-12-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市精驰自动化 (淘宝)', NULL, NULL, NULL, NULL, '制造课使用,用于短线焊接');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849159254018, NULL, NULL, 'GPC2021NL231', '剥皮焊线机', 'jc-h-554', '深圳市精驰自动化', NULL, NULL, '2021-08-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2021-12-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市精驰自动化 (淘宝)', NULL, NULL, NULL, NULL, '用于6920短线焊接,2023年9月14 由上海公司转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849176031234, NULL, NULL, 'GPA2021NL100', '显微镜', '500万像素 带11.3寸屏', '深圳市三锵泰达光学仪器有限公司', NULL, NULL, '2021-10-20', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-12-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '三锵泰达光学仪器(天猫)', NULL, NULL, NULL, NULL, '客诉品分析用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849192808449, NULL, NULL, 'GPC2021NL232', '田中绕线机', 'AX-1', '浙江田中精机股份有限公司', NULL, NULL, '2021-10-20', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2021-12-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市璟玥科技发展有限公司', NULL, NULL, NULL, NULL, '二手设备,田中生产第三方购买');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849209585665, NULL, NULL, 'GPC2021NL234', '自动绕线机(扎线机)', 'OD25-40MM', '东莞市博强自动化设备有限公司', NULL, NULL, '2021-10-27', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2021-12-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '东莞市博强自动化设备有限公司', NULL, NULL, NULL, NULL, '适合扎大线束');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849230557186, NULL, NULL, 'GPC2021NL235', '点胶机 (控制器)', 'D-260', '深圳市轴心自控技术有限公司', NULL, NULL, '2021-10-05', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2021-12-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市轴心自控技术有限公司', NULL, NULL, NULL, NULL, '轴芯点胶机控制器,封灌间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849243140097, NULL, NULL, 'GPC2021NL236', '自动剥线机', '电脑剥外皮芯线机', '江苏博之旺自动化设备有限公司', NULL, NULL, '2021-09-16', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2021-12-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '江苏博之旺自动化设备有限公司', NULL, NULL, NULL, NULL, '用于粗线剥皮');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849259917313, NULL, NULL, 'GPC2021NL237', '双液灌胶设备', 'HPG-30D', '上海汉昕工业科技有限公司', NULL, NULL, '2021-09-15', NULL, '封灌间', NULL, NULL, NULL, NULL, NULL, NULL, '2021-12-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海汉昕工业科技有限公司', NULL, NULL, NULL, NULL, '新款小剂量双液机,上海购买');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849280888834, NULL, NULL, 'GPC2022NH053', '烘箱', '550℃烘箱', '深圳市耐美特工业设备有限公司上海', NULL, NULL, '2021-12-13', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市耐美特工业设备有限公司上海', NULL, NULL, NULL, NULL, '沸石转轮车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849297666049, NULL, NULL, 'GPC2022NH054', '烘箱', '300℃烘箱', '深圳市耐美特工业设备有限公司上海', NULL, NULL, '2021-12-13', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-01-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '深圳市耐美特工业设备有限公司上海', NULL, NULL, NULL, NULL, '沸石转轮车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849314443266, NULL, NULL, 'GOA2021NL040', '电脑主机 (Autobag包装机用)', '组装机', '上海签成企业管理有限公司', NULL, NULL, '2021-12-04', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2022-01-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '上海签成企业管理有限公司', NULL, NULL, NULL, NULL, 'Autobag包装机备用主机');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849339609089, NULL, NULL, 'GPC2021NL238', '手推洗地机', 'RS-D3锂电款', '安徽荣庆清洁科技有限公司', NULL, NULL, '2021-11-18', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2021-12-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '安徽荣庆清洁科技有限公司', NULL, NULL, NULL, NULL, '制造课清洗地面用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849356386306, NULL, NULL, 'GPC2022NL241', '手动平台车', 'PTS1000', '无锡中仓搬运设备有限公司', NULL, NULL, '2022-01-08', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-02-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '无锡中仓搬运设备有限公司', NULL, NULL, NULL, NULL, '包胶间搬运模具用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849373163521, NULL, NULL, 'NPG2022H011', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:48', NULL, '2025-02-14 09:53:48', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849398329346, NULL, NULL, 'NPG2022H012', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849415106562, NULL, NULL, 'NPG2022H013', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849431883777, NULL, NULL, 'NPG2022H014', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849452855297, NULL, NULL, 'NPG2022H015', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849473826818, NULL, NULL, 'NPG2022H016', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849490604034, NULL, NULL, 'NPG2022H017', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849515769858, NULL, NULL, 'NPG2022H018', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849532547074, NULL, NULL, 'NPG2022H019', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849553518594, NULL, NULL, 'NPG2022H020', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849645793282, NULL, NULL, 'NPG2022H021', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849670959106, NULL, NULL, 'NPG2022H022', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849696124930, NULL, NULL, 'NPG2022H023', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849717096450, NULL, NULL, 'NPG2022H024', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849742262273, NULL, NULL, 'NPG2022H025', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849775816706, NULL, NULL, 'NPG2022H026', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849855508482, NULL, NULL, 'NPG2022H027', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849910034433, NULL, NULL, 'NPG2022H028', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217849956171778, NULL, NULL, 'NPG2022H029', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850006503426, NULL, NULL, 'NPG2022H030', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850065223682, NULL, NULL, 'NPG2022H031', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850102972418, NULL, NULL, 'NPG2022H032', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850144915458, NULL, NULL, 'NPG2022H033', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850199441409, NULL, NULL, 'NPG2022H034', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850241384450, NULL, NULL, 'NPG2022H035', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850270744577, NULL, NULL, 'NPG2022H036', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850291716097, NULL, NULL, 'NPG2022H037', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850312687617, NULL, NULL, 'NPG2022H038', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850337853441, NULL, NULL, 'NPG2022H039', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850358824961, NULL, NULL, 'NPG2022H040', '电烙铁', 'quick 203', '快克智能装备股份有限公司', NULL, NULL, '2022-02-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850375602178, NULL, NULL, 'GPD2022NL227', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850396573697, NULL, NULL, 'GPD2022NL228', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850421739521, NULL, NULL, 'GPD2022NL229', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850442711042, NULL, NULL, 'GPD2022NL230', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850463682561, NULL, NULL, 'GPD2022NL231', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850493042689, NULL, NULL, 'GPD2022NL232', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850509819906, NULL, NULL, 'GPD2022NL233', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850526597122, NULL, NULL, 'GPD2022NL234', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850543374338, NULL, NULL, 'GPD2022NL235', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850568540162, NULL, NULL, 'GPD2022NL236', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850585317378, NULL, NULL, 'GPD2022NL237', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850602094593, NULL, NULL, 'GPD2022NL238', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850631454722, NULL, NULL, 'GPD2022NL239', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850648231938, NULL, NULL, 'GPD2022NL240', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850669203457, NULL, NULL, 'GPD2022NL241', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850694369281, NULL, NULL, 'GPD2022NL242', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850715340802, NULL, NULL, 'GPD2022NL243', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850732118018, NULL, NULL, 'GPD2022NL244', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850748895233, NULL, NULL, 'GPD2022NL245', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850774061058, NULL, NULL, 'GPD2022NL246', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850795032578, NULL, NULL, 'GPD2022NL247', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850811809794, NULL, NULL, 'GPD2022NL248', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850841169922, NULL, NULL, 'GPD2022NL249', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850857947137, NULL, NULL, 'GPD2022NL250', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850874724353, NULL, NULL, 'GPD2022NL251', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850904084481, NULL, NULL, 'GPD2022NL252', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850920861697, NULL, NULL, 'GPD2022NL253', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850941833218, NULL, NULL, 'GPD2022NL254', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850958610434, NULL, NULL, 'GPD2022NL255', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850979581953, NULL, NULL, 'GPD2022NL256', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217850996359169, NULL, NULL, 'GPD2022NL257', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851017330690, NULL, NULL, 'GPD2022NL258', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851042496513, NULL, NULL, 'GPD2022NL259', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851063468033, NULL, NULL, 'GPD2022NL260', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851080245250, NULL, NULL, 'GPD2022NL261', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851097022466, NULL, NULL, 'GPD2022NL262', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851113799681, NULL, NULL, 'GPD2022NL263', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851134771202, NULL, NULL, 'GPD2022NL264', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851151548418, NULL, NULL, 'GPD2022NL265', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851168325633, NULL, NULL, 'GPD2022NL266', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851197685762, NULL, NULL, 'GPD2022NL267', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851218657281, NULL, NULL, 'GPD2022NL268', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851235434498, NULL, NULL, 'GPD2022NL269', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851264794625, NULL, NULL, 'GPD2022NL270', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851281571842, NULL, NULL, 'GPD2022NL271', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851306737666, NULL, NULL, 'GPD2022NL272', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851336097794, NULL, NULL, 'GPD2022NL273', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851357069313, NULL, NULL, 'GPD2022NL274', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851378040834, NULL, NULL, 'GPD2022NL275', '工作台', '单个可拼接款60*80', '上海昶申铝材有限公司', NULL, NULL, '2022-02-10', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851407400962, NULL, NULL, 'GPC2022NL240', '空压机(ESUAN)', 'ES120L', '淘宝购买', NULL, NULL, '2022-01-27', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2022-02-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '淘宝购买', NULL, NULL, NULL, NULL, '绕线圈设备夜间专供气源用,2024.08.22转移安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851424178178, NULL, NULL, 'GPC2022NL242', '激光调阻机', 'LT3100', '武汉三工精密制造有限公司', NULL, NULL, '2022-02-25', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '武汉三工精密制造有限公司', NULL, NULL, NULL, NULL, '新款半自动激光调阻机,转安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851445149697, NULL, NULL, 'GPC2022NL243', '伺服张力送线器', '电子式张力器SFD800-CL', '东莞市友吉电子有限公司', NULL, NULL, '2022-02-05', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '淘宝', NULL, NULL, NULL, NULL, 'MX1804机器用,小张力LE18产品');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851474509826, NULL, NULL, 'GPC2022NL244', '群脉冲发生器', 'EFT-405CN丶EFTC', '上海凌世电磁技术有限公司', NULL, NULL, '2022-02-06', NULL, 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海凌世电磁技术有限公司', NULL, NULL, NULL, NULL, 'EMC实验室DQM使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851495481346, NULL, NULL, 'GPC2022NL245', '传感抗干扰一体机', 'RIS-6091-85', '上海凌世电磁技术有限公司', NULL, NULL, '2022-02-06', NULL, 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海凌世电磁技术有限公司', NULL, NULL, NULL, NULL, 'EMC实验室DQM使用,无法使用已退货,账目消除');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851520647170, NULL, NULL, 'GPC2022NL246', '高低温试验箱', 'M/THP-800L', '睦尼试验设备(上海)有限公司', NULL, NULL, '2022-01-09', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, NULL, '测试孔未技术沟通开错,封灌间门口');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851545812993, NULL, NULL, 'GPD2022NL224', '高层货架', '四层*2排+三层*2排', '上海宏扬仓储设备有限公司', NULL, NULL, '2022-03-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海宏扬仓储设备有限公司', NULL, NULL, NULL, NULL, '放置于原环保车间,成品库货架');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851562590210, NULL, NULL, 'GPC2022NL247', '立式注塑机', 'TY-600', '杭州大禹机械有限公司', NULL, NULL, '2022-02-09', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-05-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山奥维兹机械设备有限公司', NULL, NULL, NULL, NULL, '位于注塑车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851583561730, NULL, NULL, 'GPC2022NL248', '高低温箱', '伟思富奇PRO-180', '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, '2022-02-16', NULL, '标准部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-05-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, NULL, NULL, '原研发请购,2024.2.28转移到标准部3楼(质量管理部)');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851617116162, NULL, NULL, 'GPC2022NL249', '剥打一体端子机', '亚拓定制 剥打一体机', '昆山亚拓机械设备有限公司', NULL, NULL, '2021-12-16', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-05-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山亚拓机械设备有限公司', NULL, NULL, NULL, NULL, '前加工使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851642281985, NULL, NULL, 'GPC2022NL250', '数控CNC加工中心', 'HD-T640 M80 12000rpm', '江苏厚道数控科技有限公司', NULL, NULL, '2022-02-16', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-05-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '江苏厚道数控科技有限公司', NULL, NULL, NULL, NULL, '金工车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851675836417, NULL, NULL, 'GPC2022NL251', '高低温箱', '伟思富奇PRO-180', '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, '2022-02-09', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-05-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, NULL, NULL, '位于封灌间门口');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851692613633, NULL, NULL, 'GPC2022NL252', '激光调阻机', 'LT3100', '武汉三工精密制造有限公司', NULL, NULL, '2022-03-03', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-05-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '武汉三工精密制造有限公司', NULL, NULL, NULL, NULL, '传感器车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851713585153, NULL, NULL, 'GPC2022NL253', '激光调阻机', 'LT3100', '武汉三工精密制造有限公司', NULL, NULL, '2022-03-03', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-05-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '武汉三工精密制造有限公司', NULL, NULL, NULL, NULL, '传感器车间使用,2024.07.16转移安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851734556674, NULL, NULL, 'GPC2022NL254', '立式注塑机', 'AT-550.2R(转盘机)', '杭州爱科机械有限公司', NULL, NULL, '2022-02-09', '1', '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-05-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '杭州爱科机械有限公司', NULL, NULL, NULL, NULL, '2023.01.10转移到安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851768111105, NULL, NULL, 'GPA2022NL101', '针床测试台', 'LBJ-UC10-B023产品测试治具', '昆山陆兴泰电子有限公司', NULL, NULL, '2022-03-14', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-05-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山陆兴泰电子有限公司', NULL, NULL, NULL, NULL, '用于测试LBJ-UC10-B023产品');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851793276929, NULL, NULL, 'GPA2022NL102', '高压脉冲试验仪', '远方 HVP-2', '杭州远方电磁兼容技术有限公司', NULL, NULL, '2022-02-10', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海致广电子技术有限公司', NULL, NULL, NULL, NULL, 'EMC实验室 DQM部,老设备抵扣2k换购。');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851826831361, NULL, NULL, 'GPC2022NL255', '空心线圈绕线机', '欣宝XB130', '苏州欣宝自动化设备有限公司', NULL, NULL, '2022-03-23', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '前加工新增设备,跟田中差距甚远,2022.11.11转安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851851997186, NULL, NULL, 'GPA2022NL103', '高精度传感器测试仪', '众泰兴(定制)', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2022-05-18', NULL, '生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '未知设备???,RD实验室10米黑色测试平台');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851868774402, NULL, NULL, 'GPG2022NL057', '隔震光学实验平台', '众泰兴(定制)', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2022-05-11', NULL, '生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '未知设备???');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851893940225, NULL, NULL, 'GPC2022NL257', '高低温试验箱', '伟思富奇PRO-180', '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, '2022-05-03', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, NULL, NULL, '质量实验室使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851914911745, NULL, NULL, 'GPC2022NL258', '高低温试验箱', '伟思富奇PRO-180', '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, '2022-05-18', NULL, '标准部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, NULL, NULL, '原研发请购,2024.2.28转移到标准部3楼(质量管理部)');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851935883266, NULL, NULL, 'NPA2022NL014', '电子秤', '30kg/2g', '上海信衡电子有限公司', NULL, NULL, '2022-05-24', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海信衡电子有限公司', NULL, NULL, NULL, NULL, '材料库用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217851973632001, NULL, NULL, 'GPG2022NL058', '电动叉车', 'TEU 1.5吨站立前移式', '安徽梯易优叉车有限公司', NULL, NULL, '2022-05-10', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海瑞顶叉车有限公司', NULL, NULL, NULL, NULL, '成品库搬运用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852002992129, NULL, NULL, 'GPC2022NL256', '液压车', 'DF30*550*1150', '苏州市诺力叉车有限公司', NULL, NULL, '2022-05-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '淘宝旗舰店', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852032352257, NULL, NULL, 'GPC2021NH051', '收卷机胶辊', '直径345mm,网纹3mm', '张家港市帝达机械有限公司', NULL, NULL, '2021-12-21', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '张家港市帝达机械有限公司', NULL, NULL, NULL, NULL, '环保沸石转轮车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852061712386, NULL, NULL, 'GPB2022NH109', '夹具', '4500', '上海彤诚实业有限公司', NULL, NULL, '2022-02-27', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852095266818, NULL, NULL, 'GPB2022NH110', '夹具', '4500', '上海彤诚实业有限公司', NULL, NULL, '2022-02-27', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852120432641, NULL, NULL, 'GPB2022NH111', '夹具', '4500', '上海彤诚实业有限公司', NULL, NULL, '2022-02-27', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852141404162, NULL, NULL, 'GPB2022NH112', '夹具', '4500', '上海彤诚实业有限公司', NULL, NULL, '2022-02-27', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852170764289, NULL, NULL, 'GPB2022NH113', '夹具', '2650', '上海彤诚实业有限公司', NULL, NULL, '2022-02-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852200124418, NULL, NULL, 'GPB2022NH114', '夹具', '2650', '上海彤诚实业有限公司', NULL, NULL, '2022-02-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852237873153, NULL, NULL, 'GPB2022NH115', '夹具', '2650', '上海彤诚实业有限公司', NULL, NULL, '2022-02-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852275621890, NULL, NULL, 'GPB2022NH116', '夹具', '2650', '上海彤诚实业有限公司', NULL, NULL, '2022-02-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852304982018, NULL, NULL, 'GPG2022NH032', '浸渍池', '不锈钢304,定制见图纸', '上海彤诚实业有限公司', NULL, NULL, '2022-02-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852330147842, NULL, NULL, 'GPG2022NH033', '浸渍池', '不锈钢304,定制见图纸', '上海彤诚实业有限公司', NULL, NULL, '2022-02-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852355313665, NULL, NULL, 'GPG2022NH034', '浸渍池', '不锈钢304,定制见图纸', '上海彤诚实业有限公司', NULL, NULL, '2022-02-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海彤诚实业有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852380479490, NULL, NULL, 'GPD2022NH038', '货架', '2500*1200*2025', '好格仓储设备(东莞市)有限公司', NULL, NULL, '2022-05-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '好格仓储设备(东莞市)有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852409839618, NULL, NULL, 'GPD2022NH039', '货架', '2500*1200*2025', '好格仓储设备(东莞市)有限公司', NULL, NULL, '2022-05-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '好格仓储设备(东莞市)有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852439199746, NULL, NULL, 'GPD2022NH040', '货架', '2500*1200*2025', '好格仓储设备(东莞市)有限公司', NULL, NULL, '2022-05-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '好格仓储设备(东莞市)有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852460171266, NULL, NULL, 'GPD2022NH041', '货架', '2500*1200*2025', '好格仓储设备(东莞市)有限公司', NULL, NULL, '2022-05-17', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '好格仓储设备(东莞市)有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852485337089, NULL, NULL, 'GPG2022NH036', '焊接平台', '3000*5000*350*50', '泊头市国晟机械制造有限公司', NULL, NULL, '2022-06-02', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '泊头市国晟机械制造有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852514697218, NULL, NULL, 'GPG2022NH037', '焊接平台', '5000*5000*350*50', '泊头市国晟机械制造有限公司', NULL, NULL, '2022-06-02', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '泊头市国晟机械制造有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852539863042, NULL, NULL, 'GPG2022NH038', '焊接平台', '5000*5000*350*50', '泊头市国晟机械制造有限公司', NULL, NULL, '2022-06-02', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '泊头市国晟机械制造有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852594388994, NULL, NULL, 'GPC2022NL260', '焊锡机', 'R30/9700骨架线圈引脚上锡(非标定制)', '苏州欣宝自动化设备有限公司', NULL, NULL, '2022-05-11', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-06-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, 'R30/9700骨架线圈引脚上锡');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852636332034, NULL, NULL, 'GPC2022NL261', '新东和超声波焊接机', '35Khz', '昆山东和超声波设备有限公司', NULL, NULL, '2022-06-15', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '置于新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852669886465, NULL, NULL, 'GPB2022NL067', 'CNC专用台虎钳', 'DCV-6-300', '上海辁鹰精密机械有限公司', NULL, NULL, '2022-03-16', NULL, '金工间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海辁鹰精密机械有限公司', NULL, NULL, NULL, NULL, '金工间厚道加工中心用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852699246594, NULL, NULL, 'GPB2022NL068', 'CNC专用台虎钳', 'DCV-6-300', '上海辁鹰精密机械有限公司', NULL, NULL, '2022-03-16', NULL, '金工间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海辁鹰精密机械有限公司', NULL, NULL, NULL, NULL, '金工间厚道加工中心用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852728606722, NULL, NULL, 'GOA2022NL059', '工业条形码打印机', '新北洋BTP-6200I', '山东新北洋信息技术股份有限公司', NULL, NULL, '2022-06-23', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '上海迈川信息技术有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852757966849, NULL, NULL, 'GPB2022NL069', 'PSS超声波模具', 'PSS滤光片 35K', '东和超音波机械设备有限公司', NULL, NULL, '2022-05-12', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852795715586, NULL, NULL, 'GPB2022NL070', 'PSE超声波模具', 'PSE滤光片 35K', '东和超音波机械设备有限公司', NULL, NULL, '2022-05-12', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.4.24转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852829270018, NULL, NULL, 'GPB2022NL071', 'PSE超声波模具', 'PSE盖板 20K', '东和超音波机械设备有限公司', NULL, NULL, '2022-05-12', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.4.24转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852858630145, NULL, NULL, 'GPB2022NL072', 'PSR超声波模具', 'PSR盖板 20K', '东和超音波机械设备有限公司', NULL, NULL, '2022-05-12', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.4.1转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852883795970, NULL, NULL, 'GPB2022NL073', 'PSR超声波模具', 'PSR滤光片35K', '东和超音波机械设备有限公司', NULL, NULL, '2022-05-12', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.4.1转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852913156097, NULL, NULL, 'GPG2022NL061', '化学品放置柜', '460*620*1080', '上海恒起家具有限公司', NULL, NULL, '2022-07-04', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '淘宝', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852946710530, NULL, NULL, 'GPG2022NL062', '调试台放置柜', '850*390*1800', '上海恒起家具有限公司', NULL, NULL, '2022-07-04', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '淘宝', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852971876353, NULL, NULL, 'GPG2022NL063', '调试台放置柜', '850*390*1800', '上海恒起家具有限公司', NULL, NULL, '2022-07-04', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '淘宝', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217852997042178, NULL, NULL, 'GPG2022NL064', '调试台放置柜', '850*390*1800', '上海恒起家具有限公司', NULL, NULL, '2022-07-04', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '淘宝', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853022208002, NULL, NULL, 'GPC2022NL264', '诺力手动液压车(3吨)', 'AC3*540*1150', '苏州市诺力叉车有限公司', NULL, NULL, '2022-06-15', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '淘宝诺力旗舰店', NULL, NULL, NULL, NULL, '材料仓库使用,黄色3吨一体泵');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853043179522, NULL, NULL, 'GPC2022NL265', '诺力手动液压车(3吨)', 'AC3*540*1150', '苏州市诺力叉车有限公司', NULL, NULL, '2022-06-15', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '淘宝诺力旗舰店', NULL, NULL, NULL, NULL, '材料仓库使用,黄色3吨一体泵');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853064151042, NULL, NULL, 'NPG2022H041', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '研发使用,陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853089316865, NULL, NULL, 'NPG2022H042', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '研发使用,陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853114482689, NULL, NULL, 'NPG2022H043', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '研发使用,陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853139648513, NULL, NULL, 'NPG2022H044', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '研发使用,陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853160620033, NULL, NULL, 'NPG2022H045', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '研发使用,陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853189980162, NULL, NULL, 'NPG2022H046', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '研发使用,陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853223534593, NULL, NULL, 'NPG2022H047', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853248700417, NULL, NULL, 'NPG2022H048', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853303226370, NULL, NULL, 'NPG2022H049', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853336780801, NULL, NULL, 'NPG2022H050', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853366140929, NULL, NULL, 'NPG2022H051', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853391306753, NULL, NULL, 'NPG2022H052', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853416472577, NULL, NULL, 'NPG2022H053', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853445832705, NULL, NULL, 'NPG2022H054', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853521330178, NULL, NULL, 'NPG2022H055', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853559078914, NULL, NULL, 'NPG2022H056', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:49', NULL, '2025-02-14 09:53:49', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853584244737, NULL, NULL, 'NPG2022H057', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853609410561, NULL, NULL, 'NPG2022H058', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853630382081, NULL, NULL, 'NPG2022H059', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853651353602, NULL, NULL, 'NPG2022H060', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853676519426, NULL, NULL, 'NPG2022H061', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853701685249, NULL, NULL, 'NPG2022H062', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853722656769, NULL, NULL, 'NPG2022H063', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853747822593, NULL, NULL, 'NPG2022H064', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853768794114, NULL, NULL, 'NPG2022H065', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853789765634, NULL, NULL, 'NPG2022H066', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '制造课车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853810737154, NULL, NULL, 'NPG2022H067', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '制造课车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853949149185, NULL, NULL, 'NPG2022H068', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '制造课车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217853982703618, NULL, NULL, 'NPG2022H069', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '制造课车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854007869441, NULL, NULL, 'NPG2022H070', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-06-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '制造课车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854033035265, NULL, NULL, 'GPC2022NL266', '雅马哈贴片机', 'YAMAHA YSM10', '日本YAMAHA', NULL, NULL, '2022-04-12', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '传感车间SMT线使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854054006785, NULL, NULL, 'GPC2022NL267', '尚来包装机', 'DT-A12-4TR-SF', '无锡市尚来科技有限公司', NULL, NULL, '2022-02-22', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '无锡市尚来科技有限公司', NULL, NULL, NULL, NULL, '传感车间检包线使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854074978306, NULL, NULL, 'NPG2022H071', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, NULL, '生产车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854100144130, NULL, NULL, 'NPG2022H072', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, NULL, '生产车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854125309953, NULL, NULL, 'NPG2022H073', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, NULL, '生产车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854150475777, NULL, NULL, 'NPG2022H074', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, NULL, '生产车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854175641602, NULL, NULL, 'NPG2022H075', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, NULL, '生产车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854196613122, NULL, NULL, 'NPG2022H076', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, NULL, '生产车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854217584642, NULL, NULL, 'NPG2022H077', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, NULL, '生产车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854238556162, NULL, NULL, 'NPG2022H078', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, NULL, '生产车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854272110594, NULL, NULL, 'NPG2022H079', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, NULL, '生产车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854293082113, NULL, NULL, 'NPG2022H080', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, NULL, '生产车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854314053633, NULL, NULL, 'NPG2022H081', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, NULL, '生产车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854330830850, NULL, NULL, 'NPG2022H082', '送锡一体焊台', 'STX-378', '昆山市玉山镇斯泰兴工具行', NULL, NULL, '2022-05-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山市玉山镇斯泰兴工具行', NULL, NULL, NULL, NULL, '生产车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854347608065, NULL, NULL, 'GPG2022NH039', '隔离网', '1.5*3m', '安平县海诚丝网制品有限公司', NULL, NULL, '2022-06-04', NULL, '环保研发部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-04', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '安平县海诚丝网制品有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854376968193, NULL, NULL, 'GPD2022NL276', '重型货架', '2000*600*2000', '上海皓臻工业设备有限公司', NULL, NULL, '2022-05-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '放置于注塑间门口,放置模具用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854406328321, NULL, NULL, 'GPB2022NL074', '台虎钳', '型号:HVL-160', '淘宝购买', NULL, NULL, '2022-07-01', NULL, '金工间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝购买', NULL, NULL, NULL, NULL, '用于数控CNC');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854431494146, NULL, NULL, 'GOE2022NA002', '立式冰柜', '海尔LC-168H', '海尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '京东购买', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854460854274, NULL, NULL, 'NPG2022H083', '小锡炉', '创美威CM808', '创美威旗舰店', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝购买', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854486020097, NULL, NULL, 'NPG2022H084', '小锡炉', '创美威CM808', '创美威旗舰店', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝购买', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854519574529, NULL, NULL, 'NPG2022H085', '小锡炉', '创美威CM808', '创美威旗舰店', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝购买', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854540546050, NULL, NULL, 'NPG2022H086', '小锡炉', '创美威CM808', '创美威旗舰店', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝购买', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854565711873, NULL, NULL, 'GPC2022NA001', '奥津手动液压车', 'NPL25-510 额定载荷 2500mm 货叉尺寸 520*1080mm', '上海长锦机设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海长锦机设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854586683393, NULL, NULL, 'GPC2022NA002', '奥津手动液压车', 'NPL25-510 额定载荷 2500mm 货叉尺寸 520*1080mm', '上海长锦机设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海长锦机设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854611849218, NULL, NULL, 'GPC2022NA003', '奥津手动液压车', 'NP30-512 额定载荷 3000mm 货叉尺寸 520*1220mm', '上海长锦机设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海长锦机设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854632820738, NULL, NULL, 'GPC2022NA004', '奥津手动液压车', 'NP30-512 额定载荷 3000mm 货叉尺寸 520*1220mm', '上海长锦机设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-08-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海长锦机设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854653792257, NULL, NULL, 'GPC2022NA006', '高速静音剥打端子机', '287# 配兰宝1-26-287端子', '昆山亚拓机械设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山亚拓机械设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854687346689, NULL, NULL, 'GPC2022NA015', '高速静音剥打端子机', '286# 配兰宝1-26-286端子', '昆山亚拓机械设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山亚拓机械设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854708318209, NULL, NULL, 'GPA2022NA001', '回流焊炉温测试仪', 'KIC2000', '未知', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854729289730, NULL, NULL, 'GPC2022NA007', '吸尘器 (分板机用 )', 'DL-2200-80-AC', '上海全风实业有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海全风实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854754455554, NULL, NULL, 'GPC2022NA008', '全自动锡膏印刷机', 'GKG G9+', '东莞凯格精密电子设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '东莞凯格精密电子设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854909644802, NULL, NULL, 'GPC2022NA010', '锡膏搅拌机', 'SPS-10 MALCOM日本', '日本MALCOM', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海衡鹏实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854947393537, NULL, NULL, 'GOB2022NA004', '标签打印机', '新北洋BTP-6200I', '山东新北洋信息技术股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217854972559361, NULL, NULL, 'GPC2022NA011', 'YAMAHA贴片机', 'YAMAHA YSM20R', '日本YAMAHA', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855001919489, NULL, NULL, 'GPC2022NA012', 'YAMAHA贴片机', 'YAMAHA YSM10', '日本YAMAHA', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855022891009, NULL, NULL, 'GPC2022NA016', 'OK/NG自动收板机', '康贝尔 CWUD-880N 双轨', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855048056833, NULL, NULL, 'GPC2022NA017', '全自动上板', '康贝尔 SCLD-880A 单轨', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855073222658, NULL, NULL, 'GPC2022NA013', '接驳台', '康贝尔0.6米工作检查站(双轨一段式) CDWT-100A', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855094194177, NULL, NULL, 'GPA2022NA003', '静电手环测试仪', 'TR7131', '苏州京度电气有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855115165698, NULL, NULL, 'GPA2022NA004', '静电手环测试仪', 'TR7131', '苏州京度电气有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855169691649, NULL, NULL, 'NPG2022H89', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855190663170, NULL, NULL, 'NPG2022H90', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855215828994, NULL, NULL, 'NPG2022H91', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855240994818, NULL, NULL, 'NPG2022H92', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855261966337, NULL, NULL, 'NPG2022H93', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855282937857, NULL, NULL, 'NPG2022H94', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855299715073, NULL, NULL, 'NPG2022H95', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855320686594, NULL, NULL, 'NPG2022H96', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855345852418, NULL, NULL, 'NPG2022H97', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855371018241, NULL, NULL, 'NPG2022H98', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855391989761, NULL, NULL, 'NPG2022H99', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855408766978, NULL, NULL, 'NPG2022H100', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855433932802, NULL, NULL, 'NPG2022H101', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855446515713, NULL, NULL, 'NPG2022H102', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855467487234, NULL, NULL, 'NPG2022H103', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855488458754, NULL, NULL, 'NPG2022H104', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855509430274, NULL, NULL, 'NPG2022H105', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855530401794, NULL, NULL, 'NPG2022H106', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855555567617, NULL, NULL, 'NPG2022H107', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855589122049, NULL, NULL, 'NPG2022H108', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855605899265, NULL, NULL, 'NPG2022H109', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855626870785, NULL, NULL, 'NPG2022H110', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855647842306, NULL, NULL, 'NPG2022H111', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855668813826, NULL, NULL, 'NPG2022H112', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855685591042, NULL, NULL, 'NPG2022H113', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855710756865, NULL, NULL, 'NPG2022H114', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855727534081, NULL, NULL, 'NPG2022H115', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855748505602, NULL, NULL, 'NPG2022H116', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855769477122, NULL, NULL, 'NPG2022H117', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855786254338, NULL, NULL, 'NPG2022H118', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855811420161, NULL, NULL, 'GPC2022NL268', '四通道示波器(周立功)', 'zds1104 100MHz', '广州致远电子有限公司', NULL, NULL, '2022-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '研发中心陈伟伟,周立功小四通');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855828197377, NULL, NULL, 'GPC2022NL269', '四通道示波器(周立功)', 'zds1104 100MHz', '广州致远电子有限公司', NULL, NULL, '2022-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '研发中心陈伟伟,周立功小四通');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855849168897, NULL, NULL, 'GPC2022NL270', '四通道示波器(周立功)', 'zds1104 100MHz', '广州致远电子有限公司', NULL, NULL, '2022-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '研发中心陈伟伟,周立功小四通');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855870140417, NULL, NULL, 'GPC2022NA023', '全自动上板机L', '康贝尔 SCLD-880A 单轨', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855891111938, NULL, NULL, 'GPC2022NA019', '接驳台', '康贝尔0.6米工作检查站(单轨一段式) CWT-100A', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855912083457, NULL, NULL, 'GPC2022NA020', '接驳台', '康贝尔0.6米工作检查站(单轨一段式) CWT-100A', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855933054977, NULL, NULL, 'GPC2022NA021', '接驳台', '康贝尔0.6米工作检查站(单轨一段式) CWT-100A', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855949832193, NULL, NULL, 'GPC2022NA022', '接驳台', '康贝尔0.6米工作检查站(单轨一段式) CWT-100A', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855974998017, NULL, NULL, 'GPA2022NA005', '明锐SPI', '深圳明锐 VSP3000 单轨3D在线', '深圳明锐理想科技有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '深圳明锐理想科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217855995969538, NULL, NULL, 'GPC2022NA018', '接驳台', '康贝尔1米工作检查站含冷却风扇(双轨一段式)', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856016941058, NULL, NULL, 'GPG2022NL067', '铝型材框架', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-06-15', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '林新文联系,前加工放设备');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856033718274, NULL, NULL, 'GPG2022NL068', '铝型材框架', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-06-15', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '林新文联系,前加工放设备');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856054689794, NULL, NULL, 'GPG2022NL069', '铝型材框架', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-06-15', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '林新文联系,3楼放超声波');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856075661314, NULL, NULL, 'GPG2022NL070', '固纬电源', '型号GPS-3030DD', '苏州固纬电子', NULL, NULL, '2022-05-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, 'DQM部戴燕燕请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856096632833, NULL, NULL, 'GPG2022NL071', '固纬电源', '型号GPS-3030DD', '苏州固纬电子', NULL, NULL, '2022-05-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, 'DQM部戴燕燕请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856113410049, NULL, NULL, 'GPG2022NL072', '固纬电源', '型号GPS-3030DD', '苏州固纬电子', NULL, NULL, '2022-05-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, 'DQM部戴燕燕请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856138575874, NULL, NULL, 'GPC2022NA024', '半自动封口机 传送带', 'FR-600', '浙江鼎业机械设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856159547393, NULL, NULL, 'GPD2022NA001', '防静电工作台', '120*60*75*160 带两个抽屉', '苏州鑫卓越家具有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856180518913, NULL, NULL, 'GPD2022NA002', '防静电工作台', '120*60*75*160 带两个抽屉', '苏州鑫卓越家具有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856205684738, NULL, NULL, 'GPD2022NA003', '防静电工作台', '120*60*75*160 带两个抽屉', '苏州鑫卓越家具有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856226656258, NULL, NULL, 'GPD2022NA004', '防静电工作台', '120*60*75*160 带两个抽屉', '苏州鑫卓越家具有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856247627778, NULL, NULL, 'GPD2022NA005', '防静电工作台', '120*60*75*160 带两个抽屉', '苏州鑫卓越家具有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856272793601, NULL, NULL, 'GPD2022NA006', '防静电工作台', '120*60*75*160 带两个抽屉', '苏州鑫卓越家具有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856289570817, NULL, NULL, 'GPD2022NA007', '防静电工作台', '120*60*75*160 带两个抽屉', '苏州鑫卓越家具有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856310542338, NULL, NULL, 'GPD2022NA008', '防静电工作台', '120*60*75*160 带两个抽屉', '苏州鑫卓越家具有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856339902466, NULL, NULL, 'NPG2022NA121', '普瑞逊电子秤', '3kg', '成都普瑞逊电子有限公司', NULL, NULL, '2022-07-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山天金冈金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856365068290, NULL, NULL, 'NPG2022NA122', '普瑞逊电子秤', '30kg', '成都普瑞逊电子有限公司', NULL, NULL, '2022-07-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山天金冈金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856394428418, NULL, NULL, 'NPG2022NA123', '普瑞逊电子秤', '150kg', '成都普瑞逊电子有限公司', NULL, NULL, '2022-07-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山天金冈金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856415399938, NULL, NULL, 'GPC2022NA025', '点料机(SMD零件计数器)', 'DPS-682', '深圳市嘉睿轩自动化设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856440565762, NULL, NULL, 'GPC2022NA026', '点料机(SMD零件计数器)', 'DPS-682', '深圳市嘉睿轩自动化设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856469925889, NULL, NULL, 'GPA2022NA006', '人工检查站', 'CWT-100A (510*460mm) 0.6米单轨', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856499286018, NULL, NULL, 'GPA2022NA007', '人工检查站', 'CWT-100A (510*460mm) 0.6米单轨', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856520257538, NULL, NULL, 'GPA2022NA008', '人工检查站', 'CWT-100A (510*460mm) 0.6米单轨', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856545423362, NULL, NULL, 'GPA2022NA009', '人工检查站', '1米双轨工作检查站带2个NG和2个OK按钮', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856566394881, NULL, NULL, 'GPD2022NL277', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856595755009, NULL, NULL, 'GPD2022NL278', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856625115138, NULL, NULL, 'GPD2022NL279', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856646086658, NULL, NULL, 'GPD2022NL280', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856671252482, NULL, NULL, 'GPD2022NL281', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856696418305, NULL, NULL, 'GPD2022NL282', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856721584130, NULL, NULL, 'GPD2022NL283', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856746749954, NULL, NULL, 'GPD2022NL284', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856776110081, NULL, NULL, 'GPD2022NL285', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856797081602, NULL, NULL, 'GPD2022NL286', '重型货架', '180*60*200=4层 1主9副', '上海皓臻工业设备有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856826441730, NULL, NULL, 'GOA2022NL383', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.06.27转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856855801858, NULL, NULL, 'GOA2022NL384', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856880967682, NULL, NULL, 'GOA2022NL385', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856906133505, NULL, NULL, 'GOA2022NL386', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856931299330, NULL, NULL, 'GOA2022NL387', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856956465153, NULL, NULL, 'GOA2022NL388', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217856977436673, NULL, NULL, 'GOA2022NL389', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857002602498, NULL, NULL, 'GOA2022NL390', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.06.27转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857027768322, NULL, NULL, 'GOA2022NL391', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.06.27转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857052934146, NULL, NULL, 'GOA2022NL392', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857082294274, NULL, NULL, 'GOA2022NL393', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857115848705, NULL, NULL, 'GOA2022NL394', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857170374658, NULL, NULL, 'GOA2022NL395', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857208123394, NULL, NULL, 'GOA2022NL396', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857254260738, NULL, NULL, 'GOA2022NL397', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857287815170, NULL, NULL, 'GOA2022NL398', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2023.11.15资产转移到安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857317175297, NULL, NULL, 'GOA2022NL399', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2023.11.15资产转移到安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857342341121, NULL, NULL, 'GOA2022NL400', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2023.11.15资产转移到安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857375895554, NULL, NULL, 'GOA2022NL401', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2023.11.15资产转移到安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857405255682, NULL, NULL, 'GOA2022NL402', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2023.11.15资产转移到安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857438810113, NULL, NULL, 'GOA2022NL403', '工控触摸屏一体机', '21.5寸屏i7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-07-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2023.11.15资产转移到安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857463975938, NULL, NULL, 'GPC2022NA029', '移栽机', 'CMV-600 (510*460mm) 5.5米', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857505918978, NULL, NULL, 'GPC2022NA031', '标签剥离机', 'BSC-110', '广州速登信息科技有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857543667714, NULL, NULL, 'GPC2022NA032', '标签剥离机', 'BSC-110', '广州速登信息科技有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857577222146, NULL, NULL, 'GPA2022NA010', '电子显微镜', '三锵双目20/40倍', '深圳市三锵泰达光学仪器有限公司', NULL, NULL, '2022-07-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857602387969, NULL, NULL, 'GPC2022NA033', '高精密手动点胶机', 'D-260', '深圳市轴心自控技术有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '深圳市轴心自控技术有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857631748098, NULL, NULL, 'GPC2022NA034', '高精密手动点胶机', 'D-260', '深圳市轴心自控技术有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '深圳市轴心自控技术有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857661108225, NULL, NULL, 'GPC2022NL271', '电脑剥线机', 'BZW-882DH', '江苏博之旺自动化设备有限公司', NULL, NULL, '2022-07-11', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '江苏博之旺自动化设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857694662657, NULL, NULL, 'GPB2022NL075', '超声波模具', 'PTL 滤光片 20K', '昆山东和超声波设备有限公司', NULL, NULL, '2022-07-25', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857740800002, NULL, NULL, 'GPB2022NL076', '超声波模具', 'PTB 滤光片 20K', '昆山东和超声波设备有限公司', NULL, NULL, '2022-07-25', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:50', NULL, '2025-02-14 09:53:50', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857782743041, NULL, NULL, 'GPB2022NL077', '超声波模具', 'PTB 灯罩 20K', '昆山东和超声波设备有限公司', NULL, NULL, '2022-07-25', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857816297473, NULL, NULL, 'GPB2022NL078', '超声波模具', 'TWF 盖板 20K', '昆山东和超声波设备有限公司', NULL, NULL, '2022-07-25', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857849851905, NULL, NULL, 'GPC2022NL272', '双头扭线浸锡剥线机', 'GL-01A全自动', '昆山冠鑫钜自动化设备有限公司', NULL, NULL, '2022-06-08', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '昆山冠鑫钜自动化设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857883406338, NULL, NULL, 'GPC2022NL273', '全自动印刷机', 'GKG GSE印刷机', '东莞凯格精密电子设备有限公司', NULL, NULL, '2022-07-25', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '东莞凯格精密电子设备有限公司', NULL, NULL, NULL, NULL, '传感车间SMT线使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217857979875329, NULL, NULL, 'GPC2022NL275', '焊接机器人', 'QUICK ET9384E-1.0出锡', '快克智能装备股份有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858013429762, NULL, NULL, 'GPC2022NL276', '焊接机器人', 'QUICK ET9384E-1.0出锡', '快克智能装备股份有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858046984194, NULL, NULL, 'GPD2022NL287', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.04.26转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858097315842, NULL, NULL, 'GPD2022NL288', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.04.26转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858126675969, NULL, NULL, 'GPD2022NL289', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.04.26转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858156036098, NULL, NULL, 'GPD2022NL290', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.04.26转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858185396226, NULL, NULL, 'GPD2022NL291', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.21转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858210562049, NULL, NULL, 'GPD2022NL292', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.21转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858239922177, NULL, NULL, 'GPD2022NL293', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.21转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858269282306, NULL, NULL, 'GPD2022NL294', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858290253825, NULL, NULL, 'GPD2022NL295', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858319613954, NULL, NULL, 'GPD2022NL296', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858344779777, NULL, NULL, 'GPD2022NL297', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.21转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858369945601, NULL, NULL, 'GPD2022NL298', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858395111425, NULL, NULL, 'GPD2022NL299', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858424471553, NULL, NULL, 'GPD2022NL300', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858445443073, NULL, NULL, 'GPD2022NL301', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858470608897, NULL, NULL, 'GPD2022NL302', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858495774721, NULL, NULL, 'GPD2022NL303', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858525134849, NULL, NULL, 'GPD2022NL304', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858550300673, NULL, NULL, 'GPD2022NL305', '工作台', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.03.02转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858575466497, NULL, NULL, 'GPD2022NL307', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2024.04.26转移到安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858609020930, NULL, NULL, 'GPD2022NL308', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858629992450, NULL, NULL, 'GPD2022NL309', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858655158274, NULL, NULL, 'GPD2022NL310', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858680324097, NULL, NULL, 'GPD2022NL311', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.05转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858705489921, NULL, NULL, 'GPD2022NL312', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858743238658, NULL, NULL, 'GPD2022NL313', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858764210177, NULL, NULL, 'GPD2022NL314', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858785181697, NULL, NULL, 'GPD2022NL315', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858814541826, NULL, NULL, 'GPD2022NL316', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858848096257, NULL, NULL, 'GPD2022NL317', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858885844993, NULL, NULL, 'GPD2022NL318', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858923593729, NULL, NULL, 'GPD2022NL319', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858957148161, NULL, NULL, 'GPD2022NL320', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217858986508290, NULL, NULL, 'GPD2022NL321', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859007479809, NULL, NULL, 'GPD2022NL322', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859032645633, NULL, NULL, 'GPD2022NL323', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859074588674, NULL, NULL, 'GPD2022NL324', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859099754497, NULL, NULL, 'GPD2022NL325', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859124920322, NULL, NULL, 'GPD2022NL326', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859158474754, NULL, NULL, 'GPD2022NL327', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859183640578, NULL, NULL, 'GPD2022NL328', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859208806402, NULL, NULL, 'GPD2022NL329', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859238166529, NULL, NULL, 'GPD2022NL330', '精益管工作台(带滑台)', '昶申铝业 定制规格', '上海昶申铝业有限公司', NULL, NULL, '2022-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '原细纱机车间,新大楼三楼,2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859267526658, NULL, NULL, 'GPG2022NL073', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859301081089, NULL, NULL, 'GPG2022NL074', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859334635522, NULL, NULL, 'GPG2022NL075', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859368189954, NULL, NULL, 'GPG2022NL076', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859405938690, NULL, NULL, 'GPG2022NL077', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859431104514, NULL, NULL, 'GPG2022NL078', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859468853249, NULL, NULL, 'GPG2022NL079', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859489824769, NULL, NULL, 'GPG2022NL080', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859531767810, NULL, NULL, 'GPG2022NL081', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859561127938, NULL, NULL, 'GPG2022NL082', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859590488065, NULL, NULL, 'GPG2022NL083', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859624042498, NULL, NULL, 'GPG2022NL084', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859653402626, NULL, NULL, 'GPG2022NL085', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2023.11.15资产转移到安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859686957058, NULL, NULL, 'GPG2022NL086', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859724705794, NULL, NULL, 'GPG2022NL087', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859754065921, NULL, NULL, 'GPG2022NL088', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2023.11.15资产转移到安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859791814658, NULL, NULL, 'GPG2022NL089', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859829563393, NULL, NULL, 'GPG2022NL090', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859871506433, NULL, NULL, 'GPG2022NL091', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859905060866, NULL, NULL, 'GPG2022NL092', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859934420994, NULL, NULL, 'GPG2022NL093', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859963781121, NULL, NULL, 'GPG2022NL094', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217859984752642, NULL, NULL, 'GPG2022NL095', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860035084290, NULL, NULL, 'GPG2022NL096', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用,2024.07.16转移安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860085415937, NULL, NULL, 'GPG2022NL097', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '原三楼新车间使用,2023.11.15转移到安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860118970369, NULL, NULL, 'GPG2022NL098', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860148330497, NULL, NULL, 'GPG2022NL099', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860186079233, NULL, NULL, 'GPG2022NL100', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860215439362, NULL, NULL, 'GPG2022NL101', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860240605186, NULL, NULL, 'GPG2022NL102', '精益管推车', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-07-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860265771009, NULL, NULL, 'GPC2022NA035', '自动绕线扎线机', '400x450x580mm', '东莞市博强自动化设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '东莞市博强自动化设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860290936833, NULL, NULL, 'GPC2022NA036', '自动绕线扎线机', '400x450x580mm', '东莞市博强自动化设备有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '东莞市博强自动化设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860324491265, NULL, NULL, 'GPC2022NA037', 'CNC绕线机', '绕线机', '苏州欣宝自动化设备有限公司', NULL, NULL, '2022-07-12', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860358045698, NULL, NULL, 'GPC2022NA038', 'CNC绕线机', '绕线机', '苏州欣宝自动化设备有限公司', NULL, NULL, '2022-07-12', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860387405826, NULL, NULL, 'GPG2022NA001', '鼓风恒温干燥箱', 'DHG-9140A', '睦尼试验设备(上海)有限公司', NULL, NULL, '2022-07-12', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860416765953, NULL, NULL, 'GPG2022NA002', '鼓风恒温干燥箱', '鼓风恒温干燥箱(小号)9030', '睦尼试验设备(上海)有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860446126082, NULL, NULL, 'GPG2022NA003', '工业电子防潮柜', 'HSC1436BD', '睦尼试验设备(上海)有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860492263426, NULL, NULL, 'GPG2022NA004', '工业电子防潮柜', 'HSC1436BD', '睦尼试验设备(上海)有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860525817858, NULL, NULL, 'GPC2022NA039', '气泡机', '冲气泡(包装减震)', '上海吉雄文化用品有限公司', NULL, NULL, '2022-07-12', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海吉雄文化用品有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860563566594, NULL, NULL, 'GPC2022NL279', '静电放电发生器', 'EMS61000-2A', '杭州远方电磁兼容技术有限公司', NULL, NULL, '2022-09-08', NULL, 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海致广电子技术有限公司', NULL, NULL, NULL, NULL, 'EMC实验室DQM使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860605509634, NULL, NULL, 'GPD2022NL332', '重型货架', '2000*600*2000(内 长1840)6层主架', '上海皓臻工业设备有限公司', NULL, NULL, '2022-08-16', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '维修间贾留勇使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860643258370, NULL, NULL, 'GPG2022NL104', '电动平板车(倒骑款)', '倒骑款尺寸:长1.7米宽1.2米', '大城县东阜重兴电动车厂', NULL, NULL, '2022-08-02', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '阿里巴巴', NULL, NULL, NULL, NULL, '维修间贾留勇使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860685201410, NULL, NULL, 'GPC2022NL281', '示波器', '鼎阳 SDS6034 H10 Pro', '鼎阳', NULL, NULL, '2022-08-25', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '欣禾电子(上海)有限公司', NULL, NULL, NULL, NULL, '研发中心项目组用,陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860718755842, NULL, NULL, 'GPC2022NL282', '信号发生器', '泰克 AFG1062', '美国泰克', NULL, NULL, '2022-08-25', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '欣禾电子(上海)有限公司', NULL, NULL, NULL, NULL, '研发中心项目组用,陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860748115970, NULL, NULL, 'GPD2022NL333', '货架', '2000*600*2000(内 长1840)5层副架', '上海皓臻工业设备有限公司', NULL, NULL, '2022-08-23', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860781670402, NULL, NULL, 'GPD2022NL334', '货架', '2000*600*2000(内 长1840)5层副架', '上海皓臻工业设备有限公司', NULL, NULL, '2022-08-23', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860815224834, NULL, NULL, 'GPD2022NL335', '货架', '2000*600*2000(内 长1840)5层副架', '上海皓臻工业设备有限公司', NULL, NULL, '2022-08-23', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860848779266, NULL, NULL, 'GPD2022NL336', '货架', '2000*600*2000(内 长1840)5层副架', '上海皓臻工业设备有限公司', NULL, NULL, '2022-08-23', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海皓臻工业设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860878139393, NULL, NULL, 'GPD2022NL337', '兰宝操作台', '蓄莹铝业 配福马轮', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-03', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860915888130, NULL, NULL, 'GPD2022NL338', '超声波工作台', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-08-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860945248257, NULL, NULL, 'GPD2022NL339', '超声波工作台', '昶申铝业 定制规格', '上海昶申铝材有限公司', NULL, NULL, '2022-08-22', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海昶申铝材有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217860974608385, NULL, NULL, 'GPB2022NL079', '超声波模具', 'PTE盖板', '昆山东和超声波设备有限公司', NULL, NULL, '2022-08-02', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861008162818, NULL, NULL, 'GPB2022NL080', '超声波模具', 'PU-30盖板', '昆山东和超声波设备有限公司', NULL, NULL, '2022-08-15', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861037522945, NULL, NULL, 'GPC2022NL284', '冷水机组', 'FAMA-20HP 水泵1.5KW', '嘉兴方迈制冷设备有限公司', NULL, NULL, '2022-08-13', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '嘉兴方迈制冷设备有限公司', NULL, NULL, NULL, NULL, '注塑间室外,2024.07.05转移到安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861071077377, NULL, NULL, 'GPC2022NL285', '高低温箱', 'M/THP-800L', '睦尼试验设备(上海)有限公司', NULL, NULL, '2022-09-01', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, NULL, '封灌间使用,2023.02已转安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861104631809, NULL, NULL, 'GPC2022NL286', '万能铣床', 'XQ6230', '杭州铣床制造有限责任公司', NULL, NULL, '2022-08-22', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '杭州铣床制造有限责任公司', NULL, NULL, NULL, NULL, '金工间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861129797633, NULL, NULL, 'GPG2022NL105', '直流电源', 'gps-3030dd', '固伟电子(苏州)有限公司', NULL, NULL, '2022-08-22', NULL, '生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '传感器车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861154963458, NULL, NULL, 'GPG2022NL106', '直流电源', 'gps-3030dd', '固伟电子(苏州)有限公司', NULL, NULL, '2022-08-22', NULL, '生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '传感器车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861196906498, NULL, NULL, 'GPG2022NL107', '直流电源', 'gps-3030dd', '固伟电子(苏州)有限公司', NULL, NULL, '2022-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '传感器车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861238849538, NULL, NULL, 'GPG2022NL108', '直流电源', 'gps-3030dd', '固伟电子(苏州)有限公司', NULL, NULL, '2022-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '传感器车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861268209666, NULL, NULL, 'GPG2022NL109', '直流电源', 'gps-3030dd', '固伟电子(苏州)有限公司', NULL, NULL, '2022-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '传感器车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861305958401, NULL, NULL, 'GPG2022NL110', '直流电源', 'gps-3030dd', '固伟电子(苏州)有限公司', NULL, NULL, '2022-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '传感器车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861339512834, NULL, NULL, 'GPG2022NL111', '直流电源', 'gps-3030dd', '固伟电子(苏州)有限公司', NULL, NULL, '2022-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '传感器车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861373067265, NULL, NULL, 'NPA2022H018', '三丰数显卡尺', '0-150mm', '日本三丰', NULL, NULL, '2022-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海希幔金属制品有限公司', NULL, NULL, NULL, NULL, '研发中心陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861410816001, NULL, NULL, 'NPA2022H019', '三丰数显卡尺', '0-150mm', '日本三丰', NULL, NULL, '2022-08-22', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海希幔金属制品有限公司', NULL, NULL, NULL, NULL, '研发中心陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861440176130, NULL, NULL, 'GPA2022NL104', '显微镜', '【标准版】TD2KH(带11.6寸显示器)', '淘宝购买(三锵)', NULL, NULL, '2022-08-19', NULL, '生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '深圳市福田区源柏泰电子经营部', NULL, NULL, NULL, NULL, '制造课办公室');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861494702082, NULL, NULL, 'GPC2022NL283', '单工位柔性振动打标机', '自动打标机(众泰兴)', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2022-05-23', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '前加工使用,2023.02已转安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861561810946, NULL, NULL, 'GOB2022NA005', '二维码打印机', 'GP-1134T', '宁波科密电子有限公司', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861595365378, NULL, NULL, 'GPG2022NH050', '储胶槽', '长宽高:650*410*556mm', '安徽诚诚机械有限公司', NULL, NULL, '2022-07-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '安徽诚诚机械有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861624725505, NULL, NULL, 'GPC2022NA040', '双梁桥式双小车起重机', 'LHE5T+5T-18.5米', '上海捷矿起重设备有限公司', NULL, NULL, '2022-09-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海捷矿起重设备有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861654085634, NULL, NULL, 'GPC2022NA041', '电动单梁桥式起重机', '5T-18.5米', '上海捷矿起重设备有限公司', NULL, NULL, '2022-09-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海捷矿起重设备有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861683445761, NULL, NULL, 'GPC2022NA042', '电动单梁桥式起重机', '5T-18.5米', '上海捷矿起重设备有限公司', NULL, NULL, '2022-09-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海捷矿起重设备有限公司', NULL, NULL, NULL, NULL, '安徽兰宝转轮基地');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861712805889, NULL, NULL, 'GOE2022NL089', '美的热水器', '50升热水器', '美的', NULL, NULL, '2022-05-18', NULL, '金工间隔壁', NULL, NULL, NULL, NULL, NULL, NULL, '2022-09-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '智光代买', NULL, NULL, NULL, NULL, '疫情期间,洗澡不够用,智光代买');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861746360322, NULL, NULL, 'GPD2022NA009', '兰宝操作台', '蓄莹定制(福马轮)', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861779914753, NULL, NULL, 'GPD2022NA010', '工作台', '放置绕线机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861800886274, NULL, NULL, 'GPD2022NA011', '工作台', '放置绕线机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861830246402, NULL, NULL, 'GPD2022NA012', '工作台', '放置中型开线机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861855412226, NULL, NULL, 'GPD2022NA013', '工作台', '放置中型开线机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861884772353, NULL, NULL, 'GPD2022NA014', '工作台', '放置中型开线机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861922521090, NULL, NULL, 'GPC2022NA044', '锡膏印刷机', 'GKG G9+', '东莞市凯格精机股份有限公司', NULL, NULL, '2002-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '东莞市凯格精机股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861960269826, NULL, NULL, 'GPC2022NA045', '自动剥线机', '电脑剥线机 BZW-882DH 左向右', '江苏博之旺自动化设备有限公司', NULL, NULL, '2002-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:51', NULL, '2025-02-14 09:53:51', NULL, '江苏博之旺自动化设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217861989629953, NULL, NULL, 'GPC2022NA046', '松京除湿机', 'DK01-T 30L', '杭州松京电器有限公司', NULL, NULL, '2022-09-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862073516033, NULL, NULL, 'GPC2022NA047', '松京除湿机', 'DK01-T 30L', '杭州松京电器有限公司', NULL, NULL, '2022-09-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862098681858, NULL, NULL, 'GPC2022NA048', '松京除湿机', 'DK01-T 30L', '杭州松京电器有限公司', NULL, NULL, '2022-09-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862119653378, NULL, NULL, 'GPC2022NA049', '自动封箱机', '101A (220V 交流大电机)', '正佳(浙江)智能设备有限公司', NULL, NULL, '2022-08-29', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862144819202, NULL, NULL, 'GPA2022NA011', '明锐自动锡膏检测仪SPI', 'SPI:VSP3000', '深圳明锐理想科技有限公司', NULL, NULL, '2022-08-20', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海昆韩电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862165790721, NULL, NULL, 'GPD2022NA015', '工作台', '理线和组装', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862186762241, NULL, NULL, 'GPD2022NA016', '工作台', '理线和组装', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862220316673, NULL, NULL, 'GPD2022NA017', '工作台', '理线和组装', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862249676802, NULL, NULL, 'GPD2022NA018', '工作台', '理线和组装', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862279036929, NULL, NULL, 'GPD2022NA019', '工作台', '理线和组装', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862308397057, NULL, NULL, 'GPD2022NA020', '工作台', '理线和组装', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862337757186, NULL, NULL, 'GPC2022NA050', '八温区回流焊', '劲拓JTR-1000D 双轨', '深圳市劲拓自动化设备股份有限公司', NULL, NULL, '2022-07-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '深圳市劲拓自动化设备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862375505921, NULL, NULL, 'GOA2022NA143', '平板电脑', '台电X16PC', '深圳市闪电之翼科技有限公司', NULL, NULL, '2022-07-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862400671746, NULL, NULL, 'GPG2022NA005', '铁皮收纳柜', '1240*40*1950 厚1.2mm 72抽', '/', NULL, NULL, '2022-08-18', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862425837569, NULL, NULL, 'GPC2022NA051', '分板机', 'AUO 3000 -UC', '和椿自动化设备有限公司', NULL, NULL, '2022-08-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '苏州昆创电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862455197698, NULL, NULL, 'GOA2022NA144', '工控电脑(一体机)', 'I7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-08-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862492946433, NULL, NULL, 'GOA2022NA145', '工控电脑(一体机)', 'I7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-08-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862526500866, NULL, NULL, 'GOA2022NA146', '工控电脑(一体机)', 'I7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-08-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862551666690, NULL, NULL, 'GOA2022NA147', '工控电脑(一体机)', 'I7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-08-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862581026817, NULL, NULL, 'GOA2022NA148', '工控电脑(一体机)', 'I7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-08-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862614581250, NULL, NULL, 'GOA2022NA149', '工控电脑(一体机)', 'I7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-08-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862652329986, NULL, NULL, 'GOA2022NA150', '工控电脑(一体机)', 'I7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-08-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862685884418, NULL, NULL, 'GOA2022NA151', '工控电脑(一体机)', 'I7+8G内存+256固态硬盘', '广州捷触电子科技有限公司', NULL, NULL, '2022-08-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862715244546, NULL, NULL, 'GPD2022NA021', '工作台', '剥线上锡', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862740410370, NULL, NULL, 'GPD2022NA022', '工作台', '剥线上锡', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862769770498, NULL, NULL, 'GPD2022NA023', '工作台', '剥线上锡', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862803324930, NULL, NULL, 'GPD2022NA024', '工作台', '剥线上锡', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862824296450, NULL, NULL, 'GPD2022NA025', '工作台', '剥线上锡', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862853656578, NULL, NULL, 'GPD2022NA026', '工作台', '剥线上锡', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862887211009, NULL, NULL, 'GPD2022NA027', '工作台', '剥线上锡', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862924959745, NULL, NULL, 'GPD2022NA028', '工作台', '剥线上锡', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862962708481, NULL, NULL, 'GPD2022NA029', '工作台', '放置扎线机和端子机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217862992068610, NULL, NULL, 'GPD2022NA030', '工作台', '放置扎线机和端子机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863029817346, NULL, NULL, 'GPD2022NA031', '工作台', '放置扎线机和端子机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863054983169, NULL, NULL, 'GPD2022NA032', '工作台', '放置扎线机和端子机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863075954690, NULL, NULL, 'GPD2022NA033', '工作台', '放置扎线机和端子机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863109509121, NULL, NULL, 'GPD2022NA034', '工作台', '放置扎线机和端子机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863143063553, NULL, NULL, 'GPD2022NA035', '工作台', '放置喷码机', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863176617986, NULL, NULL, 'GPD2022NA036', '琉璃货架', '琉璃架', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863214366721, NULL, NULL, 'GPD2022NA037', '琉璃货架', '琉璃架', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863247921154, NULL, NULL, 'GPD2022NA038', '琉璃货架', '琉璃架', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863285669890, NULL, NULL, 'GPC2022NA052', '深圳明锐AOI', '明锐 V5000D 双轨2D在线', '深圳明锐理想科技有限公司', NULL, NULL, '2022-07-12', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '深圳明锐理想科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863382138882, NULL, NULL, 'GPD2022NA039', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863407304705, NULL, NULL, 'GPD2022NA040', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863440859138, NULL, NULL, 'GPD2022NA041', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863470219265, NULL, NULL, 'GPD2022NA042', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863503773698, NULL, NULL, 'GPD2022NA043', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863533133826, NULL, NULL, 'GPD2022NA044', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863554105346, NULL, NULL, 'GPD2022NA045', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863583465474, NULL, NULL, 'GPD2022NA046', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863612825602, NULL, NULL, 'GPD2022NA047', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863642185729, NULL, NULL, 'GPD2022NA048', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863671545858, NULL, NULL, 'GPD2022NA049', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863696711681, NULL, NULL, 'GPD2022NA050', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863730266114, NULL, NULL, 'GPD2022NA051', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863755431938, NULL, NULL, 'GPD2022NA052', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863793180674, NULL, NULL, 'GPD2022NA053', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863826735105, NULL, NULL, 'GPD2022NA054', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863860289538, NULL, NULL, 'GPD2022NA055', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863898038274, NULL, NULL, 'GPD2022NA056', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863935787009, NULL, NULL, 'GPD2022NA057', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217863969341441, NULL, NULL, 'GPD2022NA058', '精益管工作台(带滑台)', '左右各10 带底脚', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864002895873, NULL, NULL, 'GPD2022NA059', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864032256002, NULL, NULL, 'GPD2022NA060', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864078393345, NULL, NULL, 'GPD2022NA061', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864116142082, NULL, NULL, 'GPD2022NA062', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864153890818, NULL, NULL, 'GPD2022NA063', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864200028162, NULL, NULL, 'GPD2022NA064', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864237776898, NULL, NULL, 'GPD2022NA065', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864271331329, NULL, NULL, 'GPD2022NA066', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864304885762, NULL, NULL, 'GPD2022NA067', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864334245889, NULL, NULL, 'GPD2022NA068', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864371994625, NULL, NULL, 'GPD2022NA069', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864405549057, NULL, NULL, 'GPD2022NA070', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864439103490, NULL, NULL, 'GPD2022NA071', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864464269313, NULL, NULL, 'GPD2022NA072', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864497823745, NULL, NULL, 'GPD2022NA073', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864522989569, NULL, NULL, 'GPD2022NA074', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864552349698, NULL, NULL, 'GPD2022NA075', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864585904130, NULL, NULL, 'GPD2022NA076', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864627847169, NULL, NULL, 'GPD2022NA077', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864653012993, NULL, NULL, 'GPD2022NA078', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864686567425, NULL, NULL, 'GPD2022NA079', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864720121858, NULL, NULL, 'GPD2022NA080', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864757870594, NULL, NULL, 'GPD2022NA081', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864791425025, NULL, NULL, 'GPD2022NA082', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864829173761, NULL, NULL, 'GPD2022NA083', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864879505409, NULL, NULL, 'GPD2022NA084', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864925642753, NULL, NULL, 'GPD2022NA085', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217864975974401, NULL, NULL, 'GPD2022NA086', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865022111745, NULL, NULL, 'GPD2022NA087', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865055666177, NULL, NULL, 'GPD2022NA088', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865085026305, NULL, NULL, 'GPD2022NA089', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865114386434, NULL, NULL, 'GPD2022NA090', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865152135170, NULL, NULL, 'GPD2022NA091', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865181495298, NULL, NULL, 'GPD2022NA092', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865223438338, NULL, NULL, 'GPD2022NA093', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865252798466, NULL, NULL, 'GPD2022NA094', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865286352897, NULL, NULL, 'GPD2022NA095', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865336684545, NULL, NULL, 'GPD2022NA096', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865437347842, NULL, NULL, 'GPD2022NA097', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865462513665, NULL, NULL, 'GPD2022NA098', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865483485186, NULL, NULL, 'GPD2022NA099', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865517039618, NULL, NULL, 'GPD2022NA100', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865554788353, NULL, NULL, 'GPD2022NA101', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865584148481, NULL, NULL, 'GPD2022NA102', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865617702913, NULL, NULL, 'GPD2022NA103', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865655451649, NULL, NULL, 'GPD2022NA104', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865693200385, NULL, NULL, 'GPD2022NA105', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865726754817, NULL, NULL, 'GPD2022NA106', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865768697858, NULL, NULL, 'GPD2022NA107', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865810640897, NULL, NULL, 'GPD2022NA108', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865840001025, NULL, NULL, 'GPD2022NA109', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865890332674, NULL, NULL, 'GPD2022NA110', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865932275714, NULL, NULL, 'GPD2022NA111', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865965830145, NULL, NULL, 'GPD2022NA112', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217865995190273, NULL, NULL, 'GPD2022NA113', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866024550401, NULL, NULL, 'GPD2022NA114', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866058104833, NULL, NULL, 'GPD2022NA115', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866091659266, NULL, NULL, 'GPD2022NA116', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866121019394, NULL, NULL, 'GPD2022NA117', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866158768130, NULL, NULL, 'GPD2022NA118', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:52', NULL, '2025-02-14 09:53:52', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866192322562, NULL, NULL, 'GPD2022NA119', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866217488385, NULL, NULL, 'GPD2022NA120', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866251042817, NULL, NULL, 'GPD2022NA121', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866280402945, NULL, NULL, 'GPD2022NA122', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866309763073, NULL, NULL, 'GPD2022NA123', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866334928898, NULL, NULL, 'GPD2022NA124', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866368483329, NULL, NULL, 'GPD2022NA125', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866439786498, NULL, NULL, 'GPD2022NA126', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866481729537, NULL, NULL, 'GPD2022NA127', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866519478274, NULL, NULL, 'GPD2022NA128', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866557227009, NULL, NULL, 'GPD2022NA129', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866586587138, NULL, NULL, 'GPD2022NA130', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866620141569, NULL, NULL, 'GPD2022NA131', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866649501698, NULL, NULL, 'GPD2022NA132', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866687250433, NULL, NULL, 'GPD2022NA133', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866724999170, NULL, NULL, 'GPD2022NA134', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866762747905, NULL, NULL, 'GPD2022NA135', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866796302337, NULL, NULL, 'GPD2022NA136', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866825662465, NULL, NULL, 'GPD2022NA137', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866859216898, NULL, NULL, 'GPD2022NA138', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866896965633, NULL, NULL, 'GPD2022NA139', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866930520065, NULL, NULL, 'GPD2022NA140', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866959880194, NULL, NULL, 'GPD2022NA141', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217866997628929, NULL, NULL, 'GPD2022NA142', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867031183362, NULL, NULL, 'GPD2022NA143', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867068932098, NULL, NULL, 'GPD2022NA144', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867102486530, NULL, NULL, 'GPD2022NA145', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867140235266, NULL, NULL, 'GPD2022NA146', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867169595394, NULL, NULL, 'GPD2022NA147', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867211538434, NULL, NULL, 'GPD2022NA148', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867249287169, NULL, NULL, 'GPD2022NA149', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867274452993, NULL, NULL, 'GPD2022NA150', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867308007425, NULL, NULL, 'GPD2022NA151', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867341561857, NULL, NULL, 'GPD2022NA152', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867379310593, NULL, NULL, 'GPD2022NA153', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867417059330, NULL, NULL, 'GPD2022NA154', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867450613761, NULL, NULL, 'GPD2022NA155', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867488362497, NULL, NULL, 'GPD2022NA156', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867534499841, NULL, NULL, 'GPD2022NA157', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867576442881, NULL, NULL, 'GPD2022NA158', '精益管工作台(带滑台)', '工作台4台一组,背告背组合安装', '上海蓄莹实业有限公司', NULL, NULL, '2022-08-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867614191618, NULL, NULL, 'GPC2022NA053', '钢网清洗机', 'SME-750气动钢网清洗机', '东莞市神华机电设备有限公司', NULL, NULL, '2022-07-18', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '东莞市神华机电设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867651940353, NULL, NULL, 'GPG2022NA007', '恒温车间', '恒温车间系统', '上海永钧机电设备有限公司', NULL, NULL, '2022-01-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海永钧机电设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867689689089, NULL, NULL, 'GPG2022NA008', '恒温车间', '恒温车间系统', '上海永钧机电设备有限公司', NULL, NULL, '2022-01-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海永钧机电设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867727437825, NULL, NULL, 'GPG2022NH051', '吹扫平台', '尺寸:2,1*1.8*2(米)', '安徽诚诚机械有限公司', NULL, NULL, '2022-07-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '安徽诚诚机械有限公司', NULL, NULL, NULL, NULL, '安徽转轮车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867756797954, NULL, NULL, 'GOB2022NL045', '号码管打印机', 'C-210E', '佳能丽标', NULL, NULL, '2022-08-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '安徽德易智莱科技有限公司', NULL, NULL, NULL, NULL, '上海传感器车间用,2024.07.16转移安徽');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867794546689, NULL, NULL, 'GPG2022NA009', '智能货柜', '垂直升降货柜', '上海运斯自动化技术有限公司', NULL, NULL, '2022-01-20', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海运斯自动化技术有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867832295425, NULL, NULL, 'GPG2022NA010', '智能货柜', '垂直升降货柜', '上海运斯自动化技术有限公司', NULL, NULL, '2022-01-20', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海运斯自动化技术有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867941347330, NULL, NULL, 'GPG2022NH052', '不锈钢自吸泵', '25WBZ3-10-0.37', '台州凯霸机电有限公司', NULL, NULL, '2022-09-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '台州凯霸机电有限公司', NULL, NULL, NULL, NULL, '安徽环保研发部使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217867979096065, NULL, NULL, 'GPG2022NH053', '气动隔膜泵', 'QBY5-25AF塑料配F4膜片', '上海沄泉泵业制造有限公司', NULL, NULL, '2022-09-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海沄泉泵业制造有限公司', NULL, NULL, NULL, NULL, '安徽环保研发部使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868012650497, NULL, NULL, 'GPG2022NH054', '气动隔膜泵', 'QBY5-25AF塑料配F4膜片', '上海沄泉泵业制造有限公司', NULL, NULL, '2022-09-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海沄泉泵业制造有限公司', NULL, NULL, NULL, NULL, '安徽环保研发部使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868054593538, NULL, NULL, 'GPC2022NL287', '振动设备', '300Kgf精密振动试验台', '苏州苏试试验集团股份有限公司', NULL, NULL, '2022-08-09', NULL, 'DQM部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '苏州苏试试验集团股份有限公司', NULL, NULL, NULL, NULL, '质量实验室(原成品库)');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868083953666, NULL, NULL, 'GPC2022NL288', '普源两通道示波器', '普源DS1102Z-E', '苏州普源精电', NULL, NULL, '2022-10-08', NULL, '生技实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海广道电子有限公司', NULL, NULL, NULL, NULL, '生技实验室陈爱明请购使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868117508097, NULL, NULL, 'GPC2022NL289', '普源两通道示波器', '普源DS1102Z-E', '苏州普源精电', NULL, NULL, '2022-10-08', NULL, '生技实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海广道电子有限公司', NULL, NULL, NULL, NULL, '生技实验室陈爱明请购使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868151062529, NULL, NULL, 'GPC2022NA054', '扫码枪', '1900GHD-2USB', '淘宝', NULL, NULL, '2022-10-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '北京优力联旭科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868184616961, NULL, NULL, 'GOB2022NL046', '新北洋条码打印机', 'BTP-6200I', '山东新北洋信息技术股份有限公司', NULL, NULL, '2022-10-07', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '东莞市英思腾信息科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868222365698, NULL, NULL, 'GPB2022NL081', '超声波模具', 'PU-30S 20K', '昆山东和超声波设备有限公司', NULL, NULL, '2022-10-08', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-10-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868260114433, NULL, NULL, 'GPD2022NA159', '分板治具架', '蓄莹定制(福马轮)', '上海蓄莹实业有限公司', NULL, NULL, '2022-10-04', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '旧款拉安徽了,新款在上海用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868297863170, NULL, NULL, 'GPA2022NA012', '钢网检测台', '老款焊接带玻璃', '深圳市鑫鸿基设备有限公司', NULL, NULL, '2022-10-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '深圳市鑫鸿基设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868331417601, NULL, NULL, 'GPD2022NA160', '不锈钢料盘挂料架', '120*50*160带底盘', '/', NULL, NULL, '2022-09-22', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868381749249, NULL, NULL, 'GPD2022NA161', '不锈钢料盘挂料架', '120*50*160带底盘', '/', NULL, NULL, '2022-09-22', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-03', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868423692290, NULL, NULL, 'GPC2022NA055', '502点胶机', 'TP-60', '/', NULL, NULL, '2022-09-23', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '淘宝', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868465635330, NULL, NULL, 'GPA2022NA013', '艾德堡HPH推拉力计', '机台+hp1000拉力机+治具', '东莞市永淇电子设备有限公司', NULL, NULL, '2022-08-31', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '东莞市永淇电子设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868511772674, NULL, NULL, 'GPC2022NA056', '树脂加料前搅拌机', '搅拌机', '广州市天河区黄村方侜仪器商行', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '广州市天河区黄村方侜仪器商行', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868541132801, NULL, NULL, 'GPC2022NA057', '环氧树脂灌注机', '全自动双液灌胶机SEC-3030B', '苏州世椿新能源技术有限公司', NULL, NULL, '2022-08-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '苏州世椿新能源技术有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868574687234, NULL, NULL, 'GPD2022NA162', '康贝尔1.0米工作检查站(单轨一段式) CWT-100A', '(单轨一段式) CWT-100A', '苏州康贝尔', NULL, NULL, '2022-07-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '昆山松航电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868608241665, NULL, NULL, 'GPC2022NA058', 'YAMAHA贴片机', 'YAMAHA YSM10 时速46000点', '日本YAMAHA', NULL, NULL, '2022-07-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868633407489, NULL, NULL, 'GPC2022NA059', '高低温箱(180L)', '67609149 PRO C/180/40/3', '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, '2022-08-25', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868658573313, NULL, NULL, 'GPC2022NA060', '高低温箱(600L)', '67611149 PRO C/600/40/3', '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, '2022-08-25', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868692127746, NULL, NULL, 'GPG2022NL113', '固伟直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2022-11-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '研发中心秘书刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868729876482, NULL, NULL, 'GPG2022NL114', '固伟直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2022-11-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '研发中心秘书刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868759236609, NULL, NULL, 'GPG2022NL115', '固伟直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2022-11-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '研发中心秘书刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868788596737, NULL, NULL, 'GPG2022NL116', '固伟直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2022-11-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '研发中心秘书刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868830539777, NULL, NULL, 'GPG2022NL117', '固伟直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2022-11-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '研发中心秘书刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868859899905, NULL, NULL, 'GPG2022NL118', '固伟直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2022-11-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '研发中心秘书刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868885065729, NULL, NULL, 'GPG2022NL119', '固伟直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2022-11-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '研发中心秘书刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868918620161, NULL, NULL, 'GPG2022NL120', '固伟直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2022-11-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '研发中心秘书刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868956368897, NULL, NULL, 'GPG2022NL121', '固伟直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2022-11-08', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '研发中心秘书刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217868989923330, NULL, NULL, 'GPC2022NL291', '全自动封口机', 'FR-600A', '浙江鼎业机械设备有限公司', NULL, NULL, '2022-10-27', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '淘宝', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869023477762, NULL, NULL, 'GPD2022NL341', '不锈钢料盘挂料架', '120*50*160带底盘', '深圳市伟新仓储设备有限公司', NULL, NULL, '2022-10-19', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '淘宝', NULL, NULL, NULL, NULL, 'SMT使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869057032193, NULL, NULL, 'GPD2022NH046', '货架', '6090*1600*4000*4F', '广东三森货架有限公司', NULL, NULL, '2022-06-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '广东三森货架有限公司', NULL, NULL, NULL, NULL, '安徽环保生产部使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869090586626, NULL, NULL, 'GPC2022NA064', '自动剥线机', '电脑剥外皮芯线机 BZW-882DH50-WX定制全伺服型', '江苏博之旺自动化设备有限公司', NULL, NULL, '2022-08-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '江苏博之旺自动化设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869128335362, NULL, NULL, 'GPD2022NA163', '钢网架', '蓄莹定制款', '上海蓄莹实业有限公司', NULL, NULL, '2022-10-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869166084098, NULL, NULL, 'GPC2022NA065', '日立喷码机', 'UX-H140S', '日本HITACHI(日立)', NULL, NULL, '2022-07-25', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '辉泉机电设备(上海)有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869203832834, NULL, NULL, 'GPC2022NA066', '安诗曼除湿机', '156L', '深圳市安诗曼科技有限公司', NULL, NULL, '2022-10-18', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '深圳市安诗曼科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869249970177, NULL, NULL, 'GPC2022NA067', '自动热缩管裁切机', 'HZX-100D', '深圳市华之鑫自动化设备有限公司', NULL, NULL, '2022-10-25', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '深圳市华之鑫自动化设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869287718914, NULL, NULL, 'GPC2022NA068', '激光刻阻机', 'LT3100', '武汉三工精密制造有限公司', NULL, NULL, '2022-10-19', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '武汉三工精密制造有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869329661954, NULL, NULL, 'GPC2022NA069', '视觉飞行激光打标机', '紫外激光机', '苏州楚天激光有限公司', NULL, NULL, '2022-08-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '苏州佰诺斯智能科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869375799297, NULL, NULL, 'GPC2022NA070', '高精密超静音压接机', 'YT-2T', '昆山亚拓机械设备有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '昆山亚拓机械设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869417742337, NULL, NULL, 'GPD2022NA164', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869451296769, NULL, NULL, 'GPD2022NA165', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869484851201, NULL, NULL, 'GPD2022NA166', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869514211330, NULL, NULL, 'GPD2022NA167', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869547765761, NULL, NULL, 'GPD2022NA168', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869585514498, NULL, NULL, 'GPD2022NA169', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869614874625, NULL, NULL, 'GPD2022NA170', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869652623362, NULL, NULL, 'GPD2022NA171', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869686177793, NULL, NULL, 'GPD2022NA172', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869723926530, NULL, NULL, 'GPD2022NA173', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869753286657, NULL, NULL, 'GPD2022NA174', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869782646786, NULL, NULL, 'GPD2022NA175', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869816201217, NULL, NULL, 'GPD2022NA176', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869853949953, NULL, NULL, 'GPD2022NA177', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869887504385, NULL, NULL, 'GPD2022NA178', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869925253122, NULL, NULL, 'GPD2022NA179', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217869958807553, NULL, NULL, 'GPD2022NA180', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870000750593, NULL, NULL, 'GPD2022NA181', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870034305025, NULL, NULL, 'GPD2022NA182', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870080442370, NULL, NULL, 'GPD2022NA183', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870122385410, NULL, NULL, 'GPD2022NA184', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870168522753, NULL, NULL, 'GPD2022NA185', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870210465794, NULL, NULL, 'GPD2022NA186', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870248214530, NULL, NULL, 'GPD2022NA187', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870285963265, NULL, NULL, 'GPD2022NA188', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870323712001, NULL, NULL, 'GPD2022NA189', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870357266433, NULL, NULL, 'GPD2022NA190', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:53', NULL, '2025-02-14 09:53:53', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870395015169, NULL, NULL, 'GPD2022NA191', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870428569602, NULL, NULL, 'GPD2022NA192', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870462124034, NULL, NULL, 'GPD2022NA193', '精益管手推车', 'PU轮 静音', '上海蓄莹实业有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870495678465, NULL, NULL, 'GPD2022NA194', '中型货架', '长*宽*高=1800*600*2000 5层板 1拖4', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870537621506, NULL, NULL, 'GPD2022NA195', '中型货架', '长*宽*高=1800*600*2000 5层板 1拖5', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870571175938, NULL, NULL, 'GPD2022NA196', '中型货架', '长*宽*高=1800*600*2000 5层板 一拖二', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870617313281, NULL, NULL, 'GPD2022NA197', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感一楼恒温室');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870650867714, NULL, NULL, 'GPD2022NA198', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感一楼恒温室');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870697005058, NULL, NULL, 'GPD2022NA199', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感一楼恒温室');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870730559490, NULL, NULL, 'GPD2022NA200', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感一楼恒温室');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870759919617, NULL, NULL, 'GPD2022NA201', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感一楼恒温室');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870793474049, NULL, NULL, 'GPD2022NA202', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感一楼恒温室');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870827028482, NULL, NULL, 'GPD2022NA203', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感一楼恒温室');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870852194306, NULL, NULL, 'GPD2022NA204', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感一楼恒温室');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870877360129, NULL, NULL, 'GPD2022NA205', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感一楼恒温室');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870906720257, NULL, NULL, 'GPD2022NA206', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感一楼恒温室');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870936080385, NULL, NULL, 'GPD2022NA207', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感一楼恒温室');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870957051905, NULL, NULL, 'GPD2022NA208', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感一楼恒温室');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217870986412034, NULL, NULL, 'GPD2022NA209', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感一楼恒温室');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871015772161, NULL, NULL, 'GPD2022NA210', '轻型货架', '长*宽*高=1500*600*2000 5层板 1拖2', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感一楼恒温室');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871049326593, NULL, NULL, 'GPD2022NA211', '轻型货架', '长*宽*高=1500*600*2000 5层板', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感二楼SMT线');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871078686722, NULL, NULL, 'GPD2022NA212', '轻型货架', '长*宽*高=1500*600*2000 5层板', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感二楼SMT线');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871112241153, NULL, NULL, 'GPD2022NA213', '中型货架', '长*宽*高=1500*600*2000 5层板', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感二楼维修间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871149989889, NULL, NULL, 'GPD2022NA214', '中型货架', '长*宽*高=1500*600*2000 5层板', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感二楼维修间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871191932930, NULL, NULL, 'GPD2022NA215', '中型货架', '长*宽*高=1800*600*2000 5层板', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感二楼封灌间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871229681665, NULL, NULL, 'GPD2022NA216', '中型货架', '长*宽*高=1800*600*2000 5层板', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感二楼封灌间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871271624706, NULL, NULL, 'GPD2022NA217', '中型货架', '长*宽*高=1800*600*2000 5层板', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感二楼封灌间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871317762049, NULL, NULL, 'GPD2022NA218', '中型货架', '长*宽*高=1800*600*2000 5层板', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感二楼封灌间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871359705089, NULL, NULL, 'GPG2022NA017', '治具放置柜', '八层文件柜850*390*1800 双开玻璃门', '马鞍山巨浪办公家具厂', NULL, NULL, '2022-11-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '马鞍山巨浪办公家具厂', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871414231042, NULL, NULL, 'GPG2022NA018', '治具放置柜', '八层文件柜850*390*1800 双开玻璃门', '马鞍山巨浪办公家具厂', NULL, NULL, '2022-11-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '马鞍山巨浪办公家具厂', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871464562690, NULL, NULL, 'GPG2022NA019', '治具放置柜', '八层文件柜850*390*1800 双开玻璃门', '马鞍山巨浪办公家具厂', NULL, NULL, '2022-11-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '马鞍山巨浪办公家具厂', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871519088642, NULL, NULL, 'GPG2022NA020', '治具放置柜', '八层文件柜850*390*1800 双开玻璃门', '马鞍山巨浪办公家具厂', NULL, NULL, '2022-11-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '马鞍山巨浪办公家具厂', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871577808897, NULL, NULL, 'GPG2022NA021', '治具放置柜', '八层文件柜850*390*1800 双开玻璃门', '马鞍山巨浪办公家具厂', NULL, NULL, '2022-11-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '马鞍山巨浪办公家具厂', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871628140546, NULL, NULL, 'GPG2022NA022', '治具放置柜', '八层文件柜850*390*1800 双开玻璃门', '马鞍山巨浪办公家具厂', NULL, NULL, '2022-11-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '马鞍山巨浪办公家具厂', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871691055105, NULL, NULL, 'GPA2022NA015', '耐压测试仪', 'WB2670A', '杭州旭尧万业科技有限公司', NULL, NULL, '2022-11-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '杭州旭尧万业科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871758163969, NULL, NULL, 'GPA2022NA016', '耐压测试仪', 'WB2670A', '杭州旭尧万业科技有限公司', NULL, NULL, '2022-11-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '杭州旭尧万业科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871858827265, NULL, NULL, 'GOA2022NA214', '平板电脑', '台电X16PC', '台电天猫店', NULL, NULL, '2022-11-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '深圳市闪电之翼科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871909158913, NULL, NULL, 'NPG2022NL126', '电子秤', '15kg-0.5g', '/', NULL, NULL, '2022-10-26', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '高新区赛格电子市场唯易准仪器仪表', NULL, NULL, NULL, NULL, '新楼三楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217871955296257, NULL, NULL, 'GPD2022NA219', '中型货架', '1800*600*2000mm,一拖二', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽兰宝行政仓库');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872005627905, NULL, NULL, 'GPD2022NA220', '中型货架', '1800*600*2000mm,一拖二', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-11-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽兰宝行政仓库');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872047570945, NULL, NULL, 'GPC2022NH059', '打药机(喷雾器)', '电动,60L+20米水管+卷轴+水桶+推车', '青岛中科园彩网络科技公司(京东)', NULL, NULL, '2022-11-18', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '青岛中科园彩网络科技公司(京东)', NULL, NULL, NULL, NULL, '安徽环保研发部使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872102096897, NULL, NULL, 'GPG2022NA024', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872156622849, NULL, NULL, 'GPG2022NA025', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872198565889, NULL, NULL, 'GPG2022NA026', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872244703233, NULL, NULL, 'GPG2022NA027', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872295034881, NULL, NULL, 'GPG2022NA028', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872341172225, NULL, NULL, 'GPG2022NA029', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872387309570, NULL, NULL, 'GPG2022NA030', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872437641217, NULL, NULL, 'GPG2022NA031', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872479584258, NULL, NULL, 'GPG2022NA032', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872521527298, NULL, NULL, 'GPG2022NA033', '培训桌', '定制规格图纸见附件', '上海昶申铝材有限公司', NULL, NULL, '2022-09-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872563470337, NULL, NULL, 'GPA2022NL112', '信号采集卡', 'NI USB 6289', 'NI', NULL, NULL, '2022-10-27', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '厦门顺祺伟业商贸有限公司', NULL, NULL, NULL, NULL, '研发中心陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872597024770, NULL, NULL, 'GPD2022NL342', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-27', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872643162114, NULL, NULL, 'GPD2022NL343', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872685105153, NULL, NULL, 'GPD2022NL344', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872722853889, NULL, NULL, 'GPD2022NL345', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872764796929, NULL, NULL, 'GPD2022NL346', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872810934273, NULL, NULL, 'GPD2022NL347', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872873848834, NULL, NULL, 'GPD2022NL348', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872932569090, NULL, NULL, 'GPD2022NL349', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217872982900737, NULL, NULL, 'GPD2022NL350', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873024843778, NULL, NULL, 'GPD2022NL351', '双面7层特厚洞板主架', '120*80*192 加厚0.7mm白色(超市货架,PST老化用)', '浙江玖固货架制造有限公司', NULL, NULL, '2022-10-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '浙江玖固货架制造有限公司', NULL, NULL, NULL, NULL, '3楼PST老化用,超市货架');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873079369730, NULL, NULL, 'GPA2022NL107', '三通道电源', 'ITECH IT6322B', '深圳市劲浩伟业科技有限公司', NULL, NULL, '2022-10-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '深圳市劲浩伟业科技有限公司', NULL, NULL, NULL, NULL, '研发中心陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873121312770, NULL, NULL, 'GPA2022NL108', '数字示波器', 'MSO5204 200MHZ', '苏州普源精电', NULL, NULL, '2022-10-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海广道电子有限公司', NULL, NULL, NULL, NULL, '研发中心陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873167450113, NULL, NULL, 'GPA2022NL109', '数字示波器', 'MSO5204 200MHZ', '苏州普源精电', NULL, NULL, '2022-10-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海广道电子有限公司', NULL, NULL, NULL, NULL, '研发中心陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873209393153, NULL, NULL, 'GPA2022NL110', '数字示波器', 'MSO5204 200MHZ', '苏州普源精电', NULL, NULL, '2022-10-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海广道电子有限公司', NULL, NULL, NULL, NULL, '研发中心陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873259724802, NULL, NULL, 'GPA2022NL111', '数字示波器', 'MSO5204 200MHZ', '苏州普源精电', NULL, NULL, '2022-10-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-11-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海广道电子有限公司', NULL, NULL, NULL, NULL, '研发中心陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873305862146, NULL, NULL, 'GPC2022NA071', '桌面式装袋机', 'DT-A12-4TR-F', '无锡市尚来科技有限公司', NULL, NULL, '2022-08-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '无锡市尚来科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873339416577, NULL, NULL, 'GPA2022NL113', '干扰测试电源', 'DF485 品牌Kikusui日本牌Kikusui日本', 'Kikusui日本', NULL, NULL, '2022-09-28', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '界导(上海)系统集成有限公司', NULL, NULL, NULL, NULL, '研发中心DQM戴燕燕使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873381359618, NULL, NULL, 'GPD2022NL352', '防静电实验工作台', '150*100*80,带横三抽屉(带锁)', '相城区黄桥威欧金属制品厂', NULL, NULL, '2022-11-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '天猫', NULL, NULL, NULL, NULL, '研发中心赵荣申购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873423302657, NULL, NULL, 'GPD2022NL353', '防静电实验工作台', '150*100*80,带横三抽屉(带锁)', '相城区黄桥威欧金属制品厂', NULL, NULL, '2022-11-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '天猫', NULL, NULL, NULL, NULL, '研发中心赵荣申购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873465245698, NULL, NULL, 'GPD2022NL354', '防静电实验工作台', '150*75*80,带横三抽屉(带锁)', '相城区黄桥威欧金属制品厂', NULL, NULL, '2022-11-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '天猫', NULL, NULL, NULL, NULL, '研发中心赵荣申购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873511383042, NULL, NULL, 'GPD2022NL355', '防静电实验工作台', '150*75*80,带横三抽屉(带锁)', '相城区黄桥威欧金属制品厂', NULL, NULL, '2022-11-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '天猫', NULL, NULL, NULL, NULL, '研发中心赵荣申购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873544937473, NULL, NULL, 'GPD2022NL356', '防静电实验工作台', '150*75*80,带横三抽屉(带锁)', '相城区黄桥威欧金属制品厂', NULL, NULL, '2022-11-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '天猫', NULL, NULL, NULL, NULL, '研发中心赵荣申购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873586880513, NULL, NULL, 'GPD2022NL357', '防静电实验工作台', '150*75*80,带横三抽屉(带锁)', '相城区黄桥威欧金属制品厂', NULL, NULL, '2022-11-21', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '天猫', NULL, NULL, NULL, NULL, '研发中心赵荣申购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873628823554, NULL, NULL, 'GPD2022NA221', '钢网架', '蓄莹定制(福马轮)', '上海蓄莹实业有限公司', NULL, NULL, '2022-07-15', NULL, '清洗间', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '请购单及合同为安徽兰宝,汪工要求送货送达上海兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873683349506, NULL, NULL, 'GPC2022NA072', '真空吸塑机(电子仓真空封装用)', 'DZQ-400 1D单室', '温州市瓯海南白象鑫驰包装机械', NULL, NULL, '2022-09-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '温州市瓯海南白象鑫驰包装机械', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873733681153, NULL, NULL, 'GOE2022NA003', '立式冰柜(存放针管胶)', '海尔LC-200H', '青岛海尔电器', NULL, NULL, '2022-11-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海鹰狮实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873784012801, NULL, NULL, 'GOD2022NA595', '沙发', '组合八:沙发8组+茶几2个+圆凳4个+抱枕8', '黎川县班班科技有限公司', NULL, NULL, '2022-11-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '黎川县班班科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873821761538, NULL, NULL, 'GOA2022NA221', '电脑(一体机)', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873880481794, NULL, NULL, 'GOA2022NA222', '电脑(一体机)', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873939202049, NULL, NULL, 'GOA2022NA223', '电脑(一体机)', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217873989533697, NULL, NULL, 'GOA2022NA224', '电脑(一体机)', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874035671041, NULL, NULL, 'GOA2022NA225', '电脑(一体机)', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874086002690, NULL, NULL, 'GOA2022NA226', '电脑(一体机)', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874119557121, NULL, NULL, 'GOA2022NA227', '电脑(一体机)', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874165694466, NULL, NULL, 'GOA2022NA228', '电脑(一体机)', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2022-11-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874211831810, NULL, NULL, 'GPG2022NA034', '安徽空压机管道', '节能管道新厂房3#4#楼', '德阗压缩机械 (上海) 有限公司', NULL, NULL, '2022-02-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '德阗压缩机械 (上海) 有限公司', NULL, NULL, NULL, NULL, '安徽厂房C栋D栋');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874249580545, NULL, NULL, 'GPG2022NH081', '工具柜', '1000*800*400mm,白色', '洛阳滨毅办公家具有限公司', NULL, NULL, '2022-12-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '洛阳滨毅办公家具有限公司', NULL, NULL, NULL, NULL, '安徽兰宝环保使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874299912193, NULL, NULL, 'GPG2022NH082', '工具柜', '1000*800*400mm,白色', '洛阳滨毅办公家具有限公司', NULL, NULL, '2022-12-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '洛阳滨毅办公家具有限公司', NULL, NULL, NULL, NULL, '安徽兰宝环保使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874346049537, NULL, NULL, 'GPG2022NH083', '工具柜', '1000*800*400mm,白色', '洛阳滨毅办公家具有限公司', NULL, NULL, '2022-12-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '洛阳滨毅办公家具有限公司', NULL, NULL, NULL, NULL, '安徽兰宝环保使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874383798274, NULL, NULL, 'GPG2022NH084', '工具柜', '1000*800*400mm,白色', '洛阳滨毅办公家具有限公司', NULL, NULL, '2022-12-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '洛阳滨毅办公家具有限公司', NULL, NULL, NULL, NULL, '安徽兰宝环保使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874425741313, NULL, NULL, 'GPG2022NH085', '工具柜', '1000*800*400mm,白色', '洛阳滨毅办公家具有限公司', NULL, NULL, '2022-12-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '洛阳滨毅办公家具有限公司', NULL, NULL, NULL, NULL, '安徽兰宝环保使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874467684353, NULL, NULL, 'GPG2022NH086', '工具柜', '1000*800*400mm,白色', '洛阳滨毅办公家具有限公司', NULL, NULL, '2022-12-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-16', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '洛阳滨毅办公家具有限公司', NULL, NULL, NULL, NULL, '安徽兰宝环保使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874518016002, NULL, NULL, 'GPA2022NA017', '示波器 (普源)', 'DS1104Z PLUS', '上海广道电子有限公司', NULL, NULL, '2022-12-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:54', NULL, '2025-02-14 09:53:54', NULL, '上海广道电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874580930561, NULL, NULL, 'GPG2023NA001', '普瑞逊电子秤', '500g精度0.05小克量', '成都普瑞逊电子有限公司', NULL, NULL, '2022-12-12', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '昆山衡是宝仪器设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874631262210, NULL, NULL, 'GPC2023NH001', '单梁起重机', 'LD5T-18.5', '合肥市神雕超重机械有限公司', NULL, NULL, '2022-11-22', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '合肥市神雕超重机械有限公司', NULL, NULL, NULL, NULL, '安徽兰宝环保使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874685788161, NULL, NULL, 'GPC2023NH002', '单梁起重机', 'LD5T-18.5', '合肥市神雕超重机械有限公司', NULL, NULL, '2022-11-22', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '合肥市神雕超重机械有限公司', NULL, NULL, NULL, NULL, '安徽兰宝环保使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874731925505, NULL, NULL, 'GPD2023NA001', '备料手推车', '蓄莹定制款', '上海蓄莹实业有限公司', NULL, NULL, '2022-12-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874786451457, NULL, NULL, 'GPD2023NA002', '备料手推车', '蓄莹定制款', '上海蓄莹实业有限公司', NULL, NULL, '2022-12-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874836783106, NULL, NULL, 'GPD2023NA003', '备料手推车', '蓄莹定制款', '上海蓄莹实业有限公司', NULL, NULL, '2022-12-02', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874882920449, NULL, NULL, 'NPG2023H006', '智能焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-12-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '研发中心陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874933252098, NULL, NULL, 'NPG2023H007', '智能焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-12-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '研发中心陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217874979389442, NULL, NULL, 'NPG2023H008', '智能焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-12-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '研发中心陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875046498306, NULL, NULL, 'NPG2023H009', '智能焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-12-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '研发中心陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875105218562, NULL, NULL, 'NPG2023H010', '智能焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2022-12-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '研发中心陈伟伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875151355905, NULL, NULL, 'GPC2023NL003', '阿特拉斯空气压缩机', 'GA75流量:3.1m3 /min0.8MPA', '无锡阿特拉斯有限公司', NULL, NULL, '2022-06-22', NULL, '空压机房', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '德阗压缩机械 (上海) 有限公司', NULL, NULL, NULL, NULL, '2022年12月由安徽工厂转移过来');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875193298945, NULL, NULL, 'GPG2023NH002', '不锈钢自吸泵', '25WBZ3-10-0.37,380V', '台州凯霸机电有限公司', NULL, NULL, '2022-01-13', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '台州凯霸机电有限公司', NULL, NULL, NULL, NULL, '安徽环保生产部使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875231047681, NULL, NULL, 'GPG2023NH003', '不锈钢自吸泵', '25WBZ3-10-0.37,380V', '台州凯霸机电有限公司', NULL, NULL, '2022-01-13', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '台州凯霸机电有限公司', NULL, NULL, NULL, NULL, '安徽环保生产部使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875277185026, NULL, NULL, 'GOA2023NL016', '工控触摸一体机', '全封闭铝款(双核4G+64G)7寸', '上海视脉电子科技有限公司', NULL, NULL, '2022-12-13', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '淘宝', NULL, NULL, NULL, NULL, 'PST烫塑料柱治具用材料');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875331710978, NULL, NULL, 'GPD2023NA004', '中型货架1拖4', '长*宽*高=1800*600*2000,4层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875373654017, NULL, NULL, 'GPD2023NA005', '轻型货架1拖2', '长*宽*高=1500*600*2000,5层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875423985666, NULL, NULL, 'GPD2023NA006', '轻型货架1拖2', '长*宽*高=1500*600*2000,5层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875470123009, NULL, NULL, 'GPD2023NA007', '轻型货架1拖2', '长*宽*高=1500*600*2000,5层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875528843266, NULL, NULL, 'GPD2023NA008', '轻型货架1拖2', '长*宽*高=1500*600*2000,5层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875595952130, NULL, NULL, 'GPD2023NA009', '中型货架1拖5', '长*宽*高=1800*600*2000,4层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875658866689, NULL, NULL, 'GPD2023NA010', '可移动货架', '长1500*宽600*1800总高,6层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875700809729, NULL, NULL, 'GPD2023NA011', '可移动货架', '长1500*宽600*1800总高,6层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875746947074, NULL, NULL, 'GPD2023NA012', '可移动货架', '长1500*宽600*1800总高,6层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875788890113, NULL, NULL, 'GPD2023NA013', '可移动货架', '长1500*宽600*1800总高,6层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875830833153, NULL, NULL, 'GPD2023NA014', '库房货架1拖2', '1800*600*2000mm五层板四层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '库房货架为安徽综合管理部用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875881164801, NULL, NULL, 'GPD2023NA015', '库房货架1拖2', '1800*600*2000mm五层板四层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '库房货架为安徽综合管理部用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875918913538, NULL, NULL, 'GPD2023NA016', '库房货架1拖2', '1800*600*2000mm五层板四层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '库房货架为安徽综合管理部用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217875973439490, NULL, NULL, 'GPD2023NA017', '库房货架1拖2', '1800*600*2000mm五层板四层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '库房货架为安徽综合管理部用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876015382530, NULL, NULL, 'GPD2023NA018', '库房货架1拖2', '1800*600*2000mm五层板四层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '库房货架为安徽综合管理部用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876057325569, NULL, NULL, 'GPD2023NA019', '库房货架1拖2', '1800*600*2000mm五层板四层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '库房货架为安徽综合管理部用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876095074305, NULL, NULL, 'GPD2023NA020', '库房货架1拖2', '1800*600*2000mm五层板四层空', '安徽诚润仓储设备有限公司', NULL, NULL, '2022-12-16', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '库房货架为安徽综合管理部用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876132823041, NULL, NULL, 'NPG2023H011', '电子秤', 'HT-600NC', '天猫', NULL, NULL, '2022-01-03', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2023-01-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '昆山天金冈金属制品有限公司', NULL, NULL, NULL, NULL, '材料仓库使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876178960385, NULL, NULL, 'GPA2023NL001', '热像仪', 'K20', '海康', NULL, NULL, '2022-12-06', NULL, '研发', NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '深圳市金厚德电子科技有限公司', NULL, NULL, NULL, NULL, '配热像仪镜头4201,研发陈伟购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876233486338, NULL, NULL, 'GPD2023NL021', '中型货架', '高2m*长2m*宽0.6m 5层', '苏州凯立金金属制品有限公司', NULL, NULL, '2023-01-05', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州凯立金金属制品有限公司', NULL, NULL, NULL, NULL, '质量实验室使用,第一次买');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876338343938, NULL, NULL, 'GPB2023NL001', '超声波模具', 'CE17 20K', '东和超音波机械设备有限公司', NULL, NULL, '2023-01-05', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '东和超音波机械设备有限公司', NULL, NULL, NULL, NULL, '新3楼新产品使用,晏阳威请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876376092673, NULL, NULL, 'GPC2023NH004', '手动液压车', '奥津 2.5吨520*1070(PU)', '上海奥津', NULL, NULL, '2023-02-03', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海奥津', NULL, NULL, NULL, NULL, '安徽兰宝环保使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876430618625, NULL, NULL, 'GPC2023NH005', '手动液压车', '奥津 2.5吨520*1070(PU)', '上海奥津', NULL, NULL, '2023-02-03', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海奥津', NULL, NULL, NULL, NULL, '安徽兰宝环保使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876476755970, NULL, NULL, 'GPC2023NA006', '烘料机', '干燥机25KG', '惠州市德穗机械有限公司', NULL, NULL, '2023-01-09', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '惠州市德穗机械有限公司', NULL, NULL, NULL, NULL, '注塑机使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876527087617, NULL, NULL, 'GPC2023NA007', '连续封口机', '不锈钢款 封口宽度10mm+双控表', '上海维马逊包装机械有限公司', NULL, NULL, '2022-11-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海维马逊包装机械有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876585807873, NULL, NULL, 'GPC2023NA008', '双液手动灌胶机', 'HPG-30D', '上海汉昕工业科技有限公司', NULL, NULL, '2022-09-19', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海汉昕工业科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876627750913, NULL, NULL, 'GPA2023NL002', '防水设备 密封检测仪', 'ip67防水测试 型号:F660-C016', '上海仁莫电子科技有限公司', NULL, NULL, '2022-11-02', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2023-02-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海仁莫电子科技有限公司', NULL, NULL, NULL, NULL, '新大楼3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876678082562, NULL, NULL, 'GPC2023NH009', '气保焊机', '上海沪工NB-350E 标配', '上海沪工焊机(集团)有限公司', NULL, NULL, '2022-02-10', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海岑溪实业有限公司', NULL, NULL, NULL, NULL, '安徽环保生产部使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876715831297, NULL, NULL, 'GPG2023NL006', '110加仑防爆柜', '1500*860*1650mm', '欧力朗家具旗舰店', NULL, NULL, '2022-03-13', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '欧力朗家具旗舰店', NULL, NULL, NULL, NULL, '放置在资材课危化品仓库');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876757774338, NULL, NULL, 'GPA2023NH003', '计米器', 'ST76', '飞跃仪表皇冠店(淘宝)', NULL, NULL, '2023-02-27', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '飞跃仪表皇冠店(淘宝)', NULL, NULL, NULL, NULL, '安徽兰宝环保使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876795523073, NULL, NULL, 'GPA2023NH004', '计米器', 'ST76', '飞跃仪表皇冠店(淘宝)', NULL, NULL, '2023-02-27', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '飞跃仪表皇冠店(淘宝)', NULL, NULL, NULL, NULL, '安徽兰宝环保使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876837466113, NULL, NULL, 'GPA2023NH005', '计米器', 'ST76', '飞跃仪表皇冠店(淘宝)', NULL, NULL, '2023-02-27', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '飞跃仪表皇冠店(淘宝)', NULL, NULL, NULL, NULL, '安徽兰宝环保使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876866826242, NULL, NULL, 'GPA2023NH006', '计米器', 'ST76', '飞跃仪表皇冠店(淘宝)', NULL, NULL, '2023-02-27', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '飞跃仪表皇冠店(淘宝)', NULL, NULL, NULL, NULL, '安徽兰宝环保使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876912963586, NULL, NULL, 'GPA2023NH007', '计米器', 'ST76', '飞跃仪表皇冠店(淘宝)', NULL, NULL, '2023-02-27', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '飞跃仪表皇冠店(淘宝)', NULL, NULL, NULL, NULL, '安徽兰宝环保使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217876959100929, NULL, NULL, 'GPG2023NA007', '电动液压升降平台车', '移动电动升降500KG1.5M', '无锡中仓搬运设备有限公司', NULL, NULL, '2023-02-27', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '无锡中仓搬运设备有限公司', NULL, NULL, NULL, NULL, '安徽兰宝使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877013626881, NULL, NULL, 'GPD2023NA023', 'SMT贴片机料架', 'YSM20R用', '雅马哈', NULL, NULL, '2023-03-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽兰宝使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877051375617, NULL, NULL, 'GPD2023NA024', 'SMT贴片机料架', 'YSM10用', '雅马哈', NULL, NULL, '2023-03-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽兰宝使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877118484482, NULL, NULL, 'GPG2023NA008', 'smt料盘挂料车', '72挂120*50*160cm带底盘', '深圳市创新源货架有限公司', NULL, NULL, '2023-02-27', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '深圳市创新源货架有限公司', NULL, NULL, NULL, NULL, '安徽兰宝使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877164621826, NULL, NULL, 'GPG2023NA009', 'smt料盘挂料车', '72挂120*50*160cm带底盘', '深圳市创新源货架有限公司', NULL, NULL, '2023-02-27', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '深圳市创新源货架有限公司', NULL, NULL, NULL, NULL, '安徽兰宝使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877223342081, NULL, NULL, 'GPC2023NA011', '续式剥皮打端机', 'HN-BD06', '昆山亚拓机械设备有限公司', NULL, NULL, '2023-02-25', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '昆山亚拓机械设备有限公司', NULL, NULL, NULL, NULL, '安徽兰宝使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877282062337, NULL, NULL, 'GPC2023NA012', '自动灌胶机', 'HPG-30D', '上海汉昕工业科技有限公司', NULL, NULL, '2023-01-12', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-03-27', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海汉昕工业科技有限公司', NULL, NULL, NULL, NULL, '安徽兰宝使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877340782593, NULL, NULL, 'GPG2023NL010', '工业电子防潮柜', 'HSC1436BD白色', '睦尼试验设备(上海)有限公司', NULL, NULL, '2023-03-11', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, NULL, 'SMT使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877391114242, NULL, NULL, 'GPG2023NL011', '干燥箱', '睦尼9030', '睦尼试验设备(上海)有限公司', NULL, NULL, '2023-04-03', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, NULL, '质量实验室使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877445640194, NULL, NULL, 'GPD2023NL025', '工作台', '180*80*75*170单面', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, NULL, '2023.12.26资产转移到资材课,新楼成品库');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877491777538, NULL, NULL, 'GPD2023NL026', '工作台', '180*80*75*170单面', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, NULL, '产品组使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877537914881, NULL, NULL, 'GPD2023NL027', '工作台', '180*80*75*170单面', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, NULL, '产品组使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877584052226, NULL, NULL, 'GPD2023NL028', '工作台', '180*80*75*170单面', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, NULL, '原产品组使用,2023.12.19转移到新楼一楼资材成品库');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877646966785, NULL, NULL, 'GOD2023NL180', '黑色防静电圆凳子', '/', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, NULL, '原产品组使用,凳子,2023.12.19转移到新楼一楼资材成品库');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877764407297, NULL, NULL, 'GOD2023NL181', '黑色防静电圆凳子', '/', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, NULL, '产品组使用,凳子');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877810544642, NULL, NULL, 'GOD2023NL182', '黑色防静电圆凳子', '/', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, NULL, '产品组使用,凳子');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877844099074, NULL, NULL, 'GOD2023NL183', '黑色防静电圆凳子', '/', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, NULL, '产品组使用,凳子');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877886042114, NULL, NULL, 'GOD2023NL184', '黑色防静电圆凳子', '/', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, NULL, '产品组使用,凳子');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877927985154, NULL, NULL, 'GOD2023NL185', '黑色防静电圆凳子', '/', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, NULL, '产品组使用,凳子');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217877974122498, NULL, NULL, 'GOD2023NL186', '黑色防静电圆凳子', '/', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, NULL, '产品组使用,凳子');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878020259842, NULL, NULL, 'GOD2023NL187', '黑色防静电圆凳子', '/', '相城区黄桥金磊金属制品厂', NULL, NULL, '2023-04-05', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '相城区黄桥金磊金属制品厂', NULL, NULL, NULL, NULL, '产品组使用,凳子');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878058008578, NULL, NULL, 'GPC2023NA014', '装袋一体打标机', 'DT-A12-4TR-F', '无锡市尚来科技有限公司', NULL, NULL, '2023-03-24', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2022-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '无锡市尚来科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878104145922, NULL, NULL, 'GPD2023NA029', '工作台', '120*60*75*160带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878158671873, NULL, NULL, 'GPD2023NA030', '工作台', '120*60*75*160带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878209003521, NULL, NULL, 'GPD2023NA031', '工作台', '120*60*75*160带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878255140866, NULL, NULL, 'GPD2023NA032', '工作台', '120*60*75*160带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878305472513, NULL, NULL, 'GPD2023NA033', '工作台', '120*60*75*160带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878355804162, NULL, NULL, 'GPD2023NA034', '工作台', '120*60*75*160带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878397747202, NULL, NULL, 'GPD2023NA035', '工作台', '120*60*75*160带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878452273153, NULL, NULL, 'GPC2023NA015', '除湿机', '安诗曼 156L', '安诗曼国际生活电器(深圳)有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安诗曼国际生活电器(深圳)有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878494216193, NULL, NULL, 'GPC2023NA016', '除湿机', '安诗曼 156L', '安诗曼国际生活电器(深圳)有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安诗曼国际生活电器(深圳)有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878540353538, NULL, NULL, 'GPC2023NA017', '除湿机', '安诗曼 156L', '安诗曼国际生活电器(深圳)有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '安诗曼国际生活电器(深圳)有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878578102274, NULL, NULL, 'GPA2023NA008', '显微镜(带屏幕)', '【2K版】TD2KHU(带11.6寸显示器)', '深圳市三锵泰达光学仪器有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '深圳市福田区金基泰电子工具商行', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878620045313, NULL, NULL, 'GPA2023NA009', '耐电压测试仪', 'WB2670A', '杭州希玛电子有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '杭州希玛电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878666182658, NULL, NULL, 'GPA2023NA013', '静电放电发生器', 'EMS61000-2A', '杭州远方电磁兼容技术有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '上海致广电子技术有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用,暂时放在上海使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878708125698, NULL, NULL, 'GPA2023NA010', '精密LED电参数测试仪', 'PLT505K测试仪一套', '深圳市宝安区新安安捷伦电子工具行', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:55', NULL, '2025-02-14 09:53:55', NULL, '深圳市宝安区新安安捷伦电子工具行', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878766845953, NULL, NULL, 'GPA2023NA012', 'LCR数字电桥', 'TH2810B+(自动LCR功能,10KHz)', '常州同惠电子股份有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '常州同惠电子股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878821371905, NULL, NULL, 'GPA2023NA011', '数显高度计测试台', '千分表0-50(精准型)+比测台200*30', '乐清市禾木仪器仪表有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '乐清市禾木仪器仪表有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878875897858, NULL, NULL, 'GPG2023NA012', '数显扭力扳手', 'SLD-10 1/4”0.5-10 增套筒9件', '东莞市景如量仪科技有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '东莞市景如量仪科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878934618114, NULL, NULL, 'GPA2023NA014', '直流电源(0~60V)', 'SS-6010KD', '永城市佰信电子商务有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '永城市佰信电子商务有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217878989144065, NULL, NULL, 'GPA2023NA015', '色差仪', 'SR-60手持式', '北京时代创客科技有限公司', NULL, NULL, '2023-04-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-04-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '北京时代创客科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879039475713, NULL, NULL, 'GPA2023NA016', '可燃气体探测仪', '/', '马鞍山艾默克机电', NULL, NULL, '2023-04-01', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '马鞍山艾默克机电', NULL, NULL, NULL, NULL, '安徽工厂综合管理部请购使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879102390274, NULL, NULL, 'GPA2023NA017', '可燃气体探测仪', '/', '马鞍山艾默克机电', NULL, NULL, '2023-04-01', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '马鞍山艾默克机电', NULL, NULL, NULL, NULL, '安徽工厂综合管理部请购使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879161110530, NULL, NULL, 'GPA2023NA018', '可燃气体探测仪', '/', '马鞍山艾默克机电', NULL, NULL, '2023-04-01', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '马鞍山艾默克机电', NULL, NULL, NULL, NULL, '安徽工厂综合管理部请购使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879219830786, NULL, NULL, 'GPG2023NA017', '防爆柜', '45加仑蓝加厚', '洛阳欧力朗办公家具有限公司', NULL, NULL, '2023-04-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '洛阳欧力朗办公家具有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879278551042, NULL, NULL, 'GPG2023NA018', '电子防潮柜', '黑色防静电HSC1436BD', '睦尼试验设备(上海)有限公司', NULL, NULL, '2023-04-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879337271297, NULL, NULL, 'GPG2023NL019', '防静电桌(远方)', '1600*800*800mm', '杭州远方电磁兼容技术有限公司', NULL, NULL, '2023-04-20', NULL, '生技实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海致广电子技术有限公司', NULL, NULL, NULL, NULL, '放置于生技产品组实验室');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879383408642, NULL, NULL, 'GPC2023NL019', '进口高低温箱', '伟思富奇 600L PRO', '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, '2023-04-13', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, NULL, NULL, '生产车间封灌间门口');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879442128898, NULL, NULL, 'GPC2023NL020', '进口高低温箱', '伟思富奇 180L PRO', '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, '2023-04-20', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, NULL, NULL, '质量请购,放在质量实验室');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879500849153, NULL, NULL, 'GPC2023WA001', '阿特拉斯空气压缩机(二手)', 'GA22流量:3.1m3 /min0.8MPA', '苏州阿特拉斯', NULL, NULL, '2022-06-13', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '德阗压缩机械 (上海) 有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用,原验收单编号GPC2023NA018改为账外');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879542792193, NULL, NULL, 'GPA2023NA019', '传导抗扰度测试系统', 'EMS61000-6B 射频传导抗扰度测试系统', '杭州远方电磁兼容技术有限公司', NULL, NULL, '2023-04-24', NULL, '生技实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海致广电子技术有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用,暂时放在上海使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879588929537, NULL, NULL, 'GPG2023NL020', '大理石平台大理石', '定制1600mmX600mmX150mm', '无锡佰斯特尔精密机械制造有 限公司', NULL, NULL, '2023-04-25', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '无锡佰斯特尔精密机械制造有 限公司', NULL, NULL, NULL, NULL, 'PDA测试平台使用,研发石彬请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879626678273, NULL, NULL, 'GPG2023NL021', '大理石平台大理石', '定制1600mmX600mmX150mm', '无锡佰斯特尔精密机械制造有 限公司', NULL, NULL, '2023-04-25', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '无锡佰斯特尔精密机械制造有 限公司', NULL, NULL, NULL, NULL, 'PDA测试平台使用,研发石彬请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879677009922, NULL, NULL, 'GPD2023NL036', '大理石平台架', '部为80X80型材架,配福马轮等', '上海皇闽铝业有限公司', NULL, NULL, '2023-04-25', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, 'PDA测试平台使用,研发石彬请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879727341569, NULL, NULL, 'GPD2023NL037', '大理石平台架', '部为80X80型材架,配福马轮等', '上海皇闽铝业有限公司', NULL, NULL, '2023-04-25', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, 'PDA测试平台使用,研发石彬请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879786061826, NULL, NULL, 'GOD2023NL188', '型材安装桌', '定做桌子', '上海蓄莹实业有限公司', NULL, NULL, '2023-04-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-17', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '研发汤东利设计请购使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879844782082, NULL, NULL, 'GOD2023NL189', '文件柜(放治具)', '1800*850*390 八层7块板', '雅砾实业(上海)有限公司', NULL, NULL, '2023-05-08', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '淘宝', NULL, NULL, NULL, NULL, '生产制造部用于存放治具用,放置于3楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879903502337, NULL, NULL, 'GOD2023NL190', '文件柜(放治具)', '1800*850*390 八层7块板', '雅砾实业(上海)有限公司', NULL, NULL, '2023-05-08', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '淘宝', NULL, NULL, NULL, NULL, '生产制造部用于存放治具用,放置于4楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217879962222593, NULL, NULL, 'GOD2023NL191', '文件柜(放治具)', '1800*850*390 八层7块板', '雅砾实业(上海)有限公司', NULL, NULL, '2023-05-08', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '淘宝', NULL, NULL, NULL, NULL, '生产制造部用于存放治具用,放置于5楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880046108674, NULL, NULL, 'GOD2023NL192', '电脑桌', '定做桌子', '上海蓄莹实业有限公司', NULL, NULL, '2022-11-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '研发汤东利设计请购使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880113217537, NULL, NULL, 'GPC2023NL021', 'XRAY点料机', 'X-RAY点料机 XC-3100', '瑞茂光学(苏州)有限公司', NULL, NULL, '2023-05-04', NULL, 'SMT', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '瑞茂光学(苏州)有限公司', NULL, NULL, NULL, NULL, 'SMT物料盘点使用设备');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880155160578, NULL, NULL, 'GPB2023NA036', '烫压治具(一出三)', '8EA-148-4-G', '江阴市欣铖电子有限公司', NULL, NULL, '2023-05-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '江阴市欣铖电子有限公司', NULL, NULL, NULL, NULL, '安徽工厂8EA烫压柱子使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880230658049, NULL, NULL, 'GPD2023NA039', '精益管工作台(带滑台)', '操作台组装(一层流利架) 3台并一组,一共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880297766914, NULL, NULL, 'GPD2023NA040', '精益管工作台(带滑台)', '操作台组装(一层流利架) 3台并一组,一共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880360681473, NULL, NULL, 'GPD2023NA041', '精益管工作台(带滑台)', '操作台组装(一层流利架) 3台并一组,一共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880406818818, NULL, NULL, 'GPD2023NA042', '精益管工作台(带滑台)', '操作台组装(一层流利架) 3台并一组,一共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880461344769, NULL, NULL, 'GPD2023NA043', '精益管工作台(带滑台)', '操作台组装(一层流利架) 3台并一组,一共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880503287809, NULL, NULL, 'GPD2023NA044', '精益管工作台(带滑台)', '操作台组装(一层流利架) 3台并一组,一共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880536842241, NULL, NULL, 'GPD2023NA045', '精益管工作台(带滑台)', '操作台组装(一层流利架) 3台并一组,一共3组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880578785281, NULL, NULL, 'GPD2023NA046', '精益管工作台(带滑台)', '理线和组装 5台并一组,共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880612339714, NULL, NULL, 'GPD2023NA047', '精益管工作台(带滑台)', '理线和组装 5台并一组,共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880658477058, NULL, NULL, 'GPD2023NA048', '精益管工作台(带滑台)', '理线和组装 5台并一组,共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880700420098, NULL, NULL, 'GPD2023NA049', '精益管工作台(带滑台)', '理线和组装 5台并一组,共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880742363138, NULL, NULL, 'GPD2023NA050', '精益管工作台(带滑台)', '理线和组装 5台并一组,共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880784306177, NULL, NULL, 'GPD2023NA051', '精益管工作台(带滑台)', '理线和组装 5台并一组,共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880826249218, NULL, NULL, 'GPD2023NA052', '精益管工作台(带滑台)', '理线和组装 5台并一组,共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880876580865, NULL, NULL, 'GPD2023NA053', '精益管工作台(带滑台)', '理线和组装 5台并一组,共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880914329602, NULL, NULL, 'GPD2023NA054', '精益管工作台(带滑台)', '理线和组装 5台并一组,共2组', '上海蓄莹实业有限公司', NULL, NULL, '2023-05-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217880956272641, NULL, NULL, 'GOA2023NA090', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881006604290, NULL, NULL, 'GOA2023NA091', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881048547329, NULL, NULL, 'GOA2023NA092', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881090490370, NULL, NULL, 'GOA2023NA093', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881132433409, NULL, NULL, 'GOA2023NA094', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881178570754, NULL, NULL, 'GOA2023NA095', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881220513794, NULL, NULL, 'GOA2023NA096', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881258262530, NULL, NULL, 'GOA2023NA097', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881300205570, NULL, NULL, 'GOA2023NA098', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881342148610, NULL, NULL, 'GOA2023NA099', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881388285953, NULL, NULL, 'GOA2023NA100', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881434423298, NULL, NULL, 'GOA2023NA101', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881488949250, NULL, NULL, 'GOA2023NA102', '工控触摸屏一体机', 'i7+8G内存+256固态硬盘 +21.5寸屏', '广州捷触电子科技有限公司', NULL, NULL, '2023-04-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州捷触电子科技有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881539280898, NULL, NULL, 'GPC2023NL022', '除湿机', 'ASM-C138 138L', '安诗曼国际生活电器(深圳)有限公司', NULL, NULL, '2023-05-19', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '安诗曼国际生活电器(深圳)有限公司', NULL, NULL, NULL, NULL, '封灌间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881589612545, NULL, NULL, 'GPC2023NL023', '缓冲气泡机', '工业级低速缓冲气垫机 2700型', '上海吉雄文化用品有限公司', NULL, NULL, '2023-05-24', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2023-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海吉雄文化用品有限公司', NULL, NULL, NULL, NULL, '资材课成品库使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881639944194, NULL, NULL, 'GPC2023NL025', '半自动端子机(OTP)', 'YT-2T高精密超静音压接机', '昆山亚拓机械设备有限公司', NULL, NULL, '2023-04-02', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '昆山亚拓机械设备有限公司', NULL, NULL, NULL, NULL, '前加工使用,OTP设备');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881681887234, NULL, NULL, 'GOD2023NA548', '工具柜', '1000*500*1800,通门内四板带背网,灰色', '上海华派办公家具有限公司', NULL, NULL, '2023-05-31', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海华派办公家具有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881732218882, NULL, NULL, 'GPD2023NA077', '防静电工作台', '120*60*75*160带两个抽屉', '六安汤健家具有限公司', NULL, NULL, '2023-05-29', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '六安汤健家具有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881778356225, NULL, NULL, 'GPD2023NA078', '防静电工作台', '120*60*75*160带两个抽屉', '六安汤健家具有限公司', NULL, NULL, '2023-05-29', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '六安汤健家具有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881837076482, NULL, NULL, 'GPD2023NA079', '防静电工作台', '120*60*75*160带两个抽屉', '六安汤健家具有限公司', NULL, NULL, '2023-05-29', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '六安汤健家具有限公司', NULL, NULL, NULL, NULL, '安徽工厂使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881879019522, NULL, NULL, 'GPC2023NA029', '冷水机', '冷水机组QYL-D25(A)', '南京利德盛机械有限公司', NULL, NULL, '2023-05-12', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '南京利德盛机械有限公司', NULL, NULL, NULL, NULL, '安徽工厂,步入式高低温用,包含新增管道施工2500元');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881925156865, NULL, NULL, 'GPC2023NA030', '环保设备', '袋式除尘器系统+吸附棉+二级活性炭系统', '上海环保科技有限公司', NULL, NULL, '2023-05-08', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海环保科技有限公司', NULL, NULL, NULL, NULL, '安徽工厂废气治理设备');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217881971294209, NULL, NULL, 'GPC2023NA031', '步入式高低温箱', '1109 B CWT12'40-90', '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, '2023-04-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '伟思富奇环境试验仪器(太仓)有限', NULL, NULL, NULL, NULL, '安徽工厂传感器老化设备');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882021625857, NULL, NULL, 'GPC2023NL028', 'A4折纸机', '升级全自动十字折纸机', '广州市帝森机电设备有限公司', NULL, NULL, '2023-05-30', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '广州市帝森机电设备有限公司', NULL, NULL, NULL, NULL, '资材科张桃请购,转生产线使用,2024.4.24转安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882059374594, NULL, NULL, 'GPA2023NL021', '光功率计', 'LP10-633波长', '是德鑫科技(深圳)有限公司', NULL, NULL, '2023-05-30', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '是德鑫科技(深圳)有限公司', NULL, NULL, NULL, NULL, '质量管理部IQC使用,谭莉莉请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882101317634, NULL, NULL, 'GOD2023NA575', '工具柜', '630*400*810,灰白色 实选:灰白色110+刹车', '洛阳英飒金属制品有限公司', NULL, NULL, '2023-05-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '洛阳英飒金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882143260673, NULL, NULL, 'GOD2023NA576', '工具柜', '630*400*810,灰白色 实选:灰白色110+刹车', '洛阳英飒金属制品有限公司', NULL, NULL, '2023-05-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '洛阳英飒金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882185203713, NULL, NULL, 'GPD2023NA089', '兰宝操作台', '(福马轮)蓄莹定制', '上海蓄莹实业有限公司', NULL, NULL, '2023-04-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882231341058, NULL, NULL, 'GPA2023NL022', '固纬 多通道电源', 'GPS-2303C 固纬 多通道电源', '东莞市创开电子仪器有限公司', NULL, NULL, '2023-05-29', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '东莞市创开电子仪器有限公司', NULL, NULL, NULL, NULL, 'DQM部小批鉴定使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882277478401, NULL, NULL, 'GPC2023NL024', '激光喷锡焊', 'QUICK LB10激光喷锡焊工作站', '快克智能装备股份有限公司', NULL, NULL, '2022-12-20', NULL, '新车间3楼', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, 'PSE,PSR拼版焊接使用设备');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882336198657, NULL, NULL, 'GPC2023NL036', '标签剥离机', 'X-130 进口-非透明标签', '深圳市优质素贸易有限公司', NULL, NULL, '2023-06-12', NULL, '前加工', NULL, NULL, NULL, NULL, NULL, NULL, '2023-06-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '深圳市优质素贸易有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882386530306, NULL, NULL, 'GPC2023NL026', '紫外激光打标机', 'SZCT-UV-5W', '苏州楚天激光有限公司', NULL, NULL, '2023-05-29', NULL, '前加工', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州楚天激光有限公司', NULL, NULL, NULL, NULL, '楚天紫外5w,3楼前加工现货激光打标用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882436861953, NULL, NULL, 'GPC2023NL027', '桌面式打印装袋一体机', 'DT-A12-4TR-F', '无锡市尚来科技有限公司', NULL, NULL, '2023-05-29', NULL, '前加工', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '无锡市尚来科技有限公司', NULL, NULL, NULL, NULL, '3楼吴丽雅现货包装用设备');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882487193601, NULL, NULL, 'GPD2023NL090', '包装机工作平台(蓄莹定制)', '配福马轮 800*570*2000mm(台面高600mm)', '上海蓄莹实业有限公司', NULL, NULL, '2023-07-25', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '3楼现货包装区域吴丽雅使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882541719554, NULL, NULL, 'GPA2023NL023', '直流电源', '固纬GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, NULL, '研发刘伟请购,给应届生使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882592051201, NULL, NULL, 'GPA2023NL024', '直流电源', '固纬GPS-3031DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, NULL, '研发刘伟请购,给应届生使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882638188545, NULL, NULL, 'GPA2023NL025', '直流电源', '固纬GPS-3032DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, NULL, '研发刘伟请购,给应届生使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882684325889, NULL, NULL, 'GPA2023NL026', '直流电源', '固纬GPS-3033DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, NULL, '研发刘伟请购,给应届生使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882734657537, NULL, NULL, 'GPA2023NL027', '直流电源', '固纬GPS-3034DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, NULL, '研发刘伟请购,给应届生使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882772406274, NULL, NULL, 'GPA2023NL028', '直流电源', '固纬GPS-3035DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, NULL, '研发刘伟请购,给应届生使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882818543617, NULL, NULL, 'GPA2023NL029', '直流电源', '固纬GPS-3036DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, NULL, '研发刘伟请购,给应届生使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882864680962, NULL, NULL, 'GPA2023NL030', '直流电源', '固纬GPS-3037DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, NULL, '研发刘伟请购,给应届生使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882906624001, NULL, NULL, 'GPA2023NL031', '直流电源', '固纬GPS-3038DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:56', NULL, '2025-02-14 09:53:56', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, NULL, '研发刘伟请购,给应届生使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217882952761346, NULL, NULL, 'GPA2023NL032', '直流电源', '固纬GPS-3039DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, NULL, '研发刘伟请购,给应届生使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883007287298, NULL, NULL, 'GPA2023NL033', '直流电源', '固纬GPS-3040DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-07-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-20', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, NULL, '研发刘伟请购,给应届生使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883045036034, NULL, NULL, 'GPA2023NL034', '高精度台式万用表', '型号:HT8845', '蚯蚓电子(上海)有限公司', NULL, NULL, '2023-07-14', NULL, 'DQM部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '蚯蚓电子(上海)有限公司', NULL, NULL, NULL, NULL, '研发闵家发请购使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883095367682, NULL, NULL, 'GPA2023NL035', '一键式快速测量仪', 'DSF-S100', '迪赛福精密量仪(深圳)有限公司', NULL, NULL, '2023-06-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '迪赛福精密量仪(深圳)有限公司', NULL, NULL, NULL, NULL, '原IQC来料检验使用,谭莉莉请购。2023.11.15转移安徽兰宝');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883145699329, NULL, NULL, 'GPD2023NA091', '烤箱放置桌', '工作台60*60*60cm 材料:钢烤漆', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽兰宝传感车间放烤箱用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883187642370, NULL, NULL, 'GPD2023NA092', '烤箱放置桌', '工作台80*75*70cm 材料:钢烤漆', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽兰宝传感车间放烤箱用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883242168322, NULL, NULL, 'GPD2023NA093', '烤箱放置桌', '工作台80*45*45cm 材料:钢烤漆', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽兰宝传感车间放烤箱用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883288305665, NULL, NULL, 'GOD2023NA588', '治具柜', '8层文件柜,7层内板 厚0.8mm 850*390*1800mm 琉璃门', '雅砾实业(上海)有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '雅砾实业(上海)有限公司', NULL, NULL, NULL, NULL, '安徽兰宝传感车间放治具使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883334443010, NULL, NULL, 'GOD2023NA589', '治具柜', '8层文件柜,7层内板 厚0.8mm 850*390*1800mm 琉璃门', '雅砾实业(上海)有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '雅砾实业(上海)有限公司', NULL, NULL, NULL, NULL, '安徽兰宝传感车间放治具使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883397357569, NULL, NULL, 'GOD2023NA590', '治具柜', '8层文件柜,7层内板 厚0.8mm 850*390*1800mm 琉璃门', '雅砾实业(上海)有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-31', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '雅砾实业(上海)有限公司', NULL, NULL, NULL, NULL, '安徽兰宝传感车间放治具使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883447689218, NULL, NULL, 'GPA2023NL036', '三路可编程直流电源', 'IT6322/艾德克斯', '上海致广电子技术有限公司', NULL, NULL, '2023-07-24', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海致广电子技术有限公司', NULL, NULL, NULL, NULL, '研发刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883506409474, NULL, NULL, 'GPA2023NL037', '信号发生器', 'AFG1062/泰克', '上海致广电子技术有限公司', NULL, NULL, '2023-07-24', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海致广电子技术有限公司', NULL, NULL, NULL, NULL, '研发刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883565129730, NULL, NULL, 'NPG2023H013', '快克无铅焊台', 'QUICK快克,型号:203', '快克智能装备股份有限公司', NULL, NULL, '2023-07-15', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '研发刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883615461378, NULL, NULL, 'NPG2023H014', '快克无铅焊台', 'QUICK快克,型号:203', '快克智能装备股份有限公司', NULL, NULL, '2023-07-15', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '研发刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883661598721, NULL, NULL, 'NPG2023H015', '快克无铅焊台', 'QUICK快克,型号:203', '快克智能装备股份有限公司', NULL, NULL, '2023-07-15', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '研发刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883707736066, NULL, NULL, 'NPG2023H016', '快克无铅焊台', 'QUICK快克,型号:203', '快克智能装备股份有限公司', NULL, NULL, '2023-07-15', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '研发刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883779039234, NULL, NULL, 'NPG2023H017', '快克无铅焊台', 'QUICK快克,型号:203', '快克智能装备股份有限公司', NULL, NULL, '2023-07-15', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '研发刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883833565185, NULL, NULL, 'NPG2023H018', '快克无铅焊台', 'QUICK快克,型号:203', '快克智能装备股份有限公司', NULL, NULL, '2023-07-15', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '研发刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883883896834, NULL, NULL, 'GPD2023NA094', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883925839873, NULL, NULL, 'GPD2023NA095', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217883984560129, NULL, NULL, 'GPD2023NA096', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884039086082, NULL, NULL, 'GPD2023NA097', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884089417729, NULL, NULL, 'GPD2023NA098', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884148137985, NULL, NULL, 'GPD2023NA099', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884202663937, NULL, NULL, 'GPD2023NA100', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884248801282, NULL, NULL, 'GPD2023NA101', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884303327234, NULL, NULL, 'GPD2023NA102', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884349464578, NULL, NULL, 'GPD2023NA103', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884403990530, NULL, NULL, 'GPD2023NA104', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884441739266, NULL, NULL, 'GPD2023NA105', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884496265217, NULL, NULL, 'GPD2023NA106', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884538208258, NULL, NULL, 'GPD2023NA107', '产品车', '推车65*45*50cm 带轮子 材料:精益管承重200公', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-02', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884575956993, NULL, NULL, 'GPD2023NA108', '喷码机工作台', '定制规格', '上海蓄莹实业有限公司', NULL, NULL, '2023-06-26', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884617900034, NULL, NULL, 'GPG2023NA137', '智能仓储物流', 'PSW-DGR7-FLB', '苏州派迅智能科技有限公司', NULL, NULL, '2023-06-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州派迅智能科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884659843074, NULL, NULL, 'GPD2023NA110', '激光调组机摆放操作台', '80*70*60蓄莹定制', '上海蓄莹实业有限公司', NULL, NULL, '2023-07-31', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884697591810, NULL, NULL, 'GPD2023NA111', '激光调组机摆放操作台', '80*70*60蓄莹定制', '上海蓄莹实业有限公司', NULL, NULL, '2023-07-31', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884739534849, NULL, NULL, 'GPG2023NA138', '排风扇(排风管道用)', '空压机房排热', '德通', NULL, NULL, '2023-07-31', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '京东', NULL, NULL, NULL, NULL, '安徽兰宝空压机房间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884777283586, NULL, NULL, 'GPG2023NA139', '排风扇(排风管道用)', '空压机房排热', '德通', NULL, NULL, '2023-07-31', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '京东', NULL, NULL, NULL, NULL, '安徽兰宝空压机房间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884823420929, NULL, NULL, 'GPC2023NL052', '定制伺服剥皮打端子机', '新款2T型号:HN-BD06配905端子磨具一套', '昆山亚拓机械设备有限公司', NULL, NULL, '2023-06-28', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '昆山亚拓机械设备有限公司', NULL, NULL, NULL, NULL, '定制伺服剥皮打端子机设备,前加工吴丽娅请购使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884869558273, NULL, NULL, 'GPC2023NA046', '高精微量注塑机', 'TY-200 螺杆Φ22 25T', '昆山大禹集成智能科技有限公司', NULL, NULL, '2023-07-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '昆山大禹集成智能科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884919889921, NULL, NULL, 'GPC2023NA047', '微型水式模温机', 'VTW-06W-120℃ 6KW', '上海文穗机械有限公司', NULL, NULL, '2023-07-03', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海文穗机械有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217884970221569, NULL, NULL, 'GPC2023NA050', '视觉激光调组机', 'BSU-20WL', '苏州佰诺斯智能科技有限公司', NULL, NULL, '2023-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州佰诺斯智能科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器二楼车间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885028941826, NULL, NULL, 'GPD2023NA113', '包胶间测试 工作台', '65*50*100cm 材料:钢烤漆', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽兰宝包胶间测试工作台');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885129605121, NULL, NULL, 'GPD2023NA114', '包胶间测试 工作台', '65*50*100cm 材料:钢烤漆', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽兰宝包胶间测试工作台');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885171548162, NULL, NULL, 'GPC2023NA041', '型材切割机', 'J3G-FF03-400', '苏州洪正机电设备有限公司', NULL, NULL, '2023-08-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州洪正机电设备有限公司', NULL, NULL, NULL, NULL, '安徽兰宝钣金车间用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885217685506, NULL, NULL, 'GPC2023NA042', '气动攻丝机', '1米气动M3-16万向', '昆山米尔斯机械设备有限公司', NULL, NULL, '2023-08-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '昆山米尔斯机械设备有限公司', NULL, NULL, NULL, NULL, '安徽兰宝钣金车间用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885259628546, NULL, NULL, 'GPG2023NA140', '空压机散热风管', '定制规格', '赣瑞通风', NULL, NULL, '2023-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '赣瑞通风', NULL, NULL, NULL, NULL, '安徽兰宝空压机房间');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885305765889, NULL, NULL, 'GPC2023NA049', '风冷冷水机', '风冷式 WSIA-4HP', '上海文穗机械有限公司', NULL, NULL, '2023-07-22', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-22', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海文穗机械有限公司', NULL, NULL, NULL, NULL, '放置于生技产品组实验室');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885347708929, NULL, NULL, 'GPC2023NL039', '进口高低温箱', '伟思富奇 180L PRO', '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, '2023-08-02', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '伟思富奇环境试验仪器(太仓)有限公司', NULL, NULL, NULL, NULL, '放置于生技产品组实验室,2023.12.21转研发');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885385457665, NULL, NULL, 'GPC2023NL040', '视觉激光调组机', 'BSU-20WL', '苏州佰诺斯智能科技有限公司', NULL, NULL, '2023-07-28', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州佰诺斯智能科技有限公司', NULL, NULL, NULL, NULL, '制造课一线,朱万婷使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885435789313, NULL, NULL, 'GPD2023NA112', '液压升降手推车', '合力整体泵2.5吨550*1150', '合肥市猛工机电设备有限公司', NULL, NULL, '2023-08-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '合肥市猛工机电设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885486120961, NULL, NULL, 'GOA2023NA165', '自动线测试台电脑', 'i5-4200Y/4G+128G+配件6项', '深圳市纪元供应链有限公司', NULL, NULL, '2023-08-14', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '深圳市纪元供应链有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885532258306, NULL, NULL, 'GPC2023NA043', '气动拉铆母枪', '整机(快换)M3-12配齐', '上海托恩机械有限公司', NULL, NULL, '2023-08-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海托恩机械有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885582589953, NULL, NULL, 'GPC2023NA044', '冷却循环水箱', 'LX-10塑料内胆水箱10升', '沙福电气(上海)有限公司 ', NULL, NULL, '2023-08-11', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '沙福电气(上海)有限公司 ', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885641310210, NULL, NULL, 'GPC2023NA048', '鞋底清洁机', '1800*760*140', '泰州天得仪器设备有限公司', NULL, NULL, '2023-08-08', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '泰州天得仪器设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885700030465, NULL, NULL, 'GOG2023NL019', '制冰机', '制冰专用', '上海创历', NULL, NULL, '2023-08-28', NULL, '综合管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海华艳酒店设备有限公司', NULL, NULL, NULL, NULL, '上海兰宝食堂');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885750362114, NULL, NULL, 'GOG2023NL021', '烤箱', 'SM2-523H', '上海新麦', NULL, NULL, '2023-08-28', NULL, '综合管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海华艳酒店设备有限公司', NULL, NULL, NULL, NULL, '上海兰宝食堂');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885792305154, NULL, NULL, 'GPB2023NL040', '超声波模具', 'PTF 超声波模具(盖板)', '昆山东和超声波设备有限公司', NULL, NULL, '2023-07-26', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '老设备升级换代,模具升级');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885825859585, NULL, NULL, 'GPB2023NL041', '超声波模具', 'SPM 超声波模具(壳体)', '昆山东和超声波设备有限公司', NULL, NULL, '2023-07-26', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '老设备升级换代,模具升级');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885859414017, NULL, NULL, 'GPB2023NL042', '超声波模具', '光纤放大器 模具(壳体)', '昆山东和超声波设备有限公司', NULL, NULL, '2023-07-26', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, '老设备升级换代,模具升级');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885934911490, NULL, NULL, 'GPD2023NA115', '杂货梯', 'TWJ200/0.4-AS', '扬州誉美电梯有限公司', NULL, NULL, '2021-04-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '扬州誉美电梯有限公司', NULL, NULL, NULL, NULL, '安徽工厂B栋使用,后补验收');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885968465921, NULL, NULL, 'GPC2023NH053', '气保焊机', '型号:NB-500WE,上海沪工', '上海焱阳焊接设备有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海焱阳焊接设备有限公司', NULL, NULL, NULL, NULL, '安徽兰宝环保研发部请购使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217885997826049, NULL, NULL, 'GPC2023NH054', '气保焊机', '型号:NB-500WE,上海沪工', '上海焱阳焊接设备有限公司', NULL, NULL, '2023-07-17', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-08', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海焱阳焊接设备有限公司', NULL, NULL, NULL, NULL, '安徽兰宝环保研发部请购使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886031380481, NULL, NULL, 'GPC2023NA056', '切割房室内行车吊', '起重机: 8*6*4米', '合肥泰然起重机有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '合肥泰然起重机有限公司', NULL, NULL, NULL, NULL, '安徽兰宝环保研发部请购使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886060740609, NULL, NULL, 'GPA2023NL038', '显微镜(带屏幕)', 'TD2KHU【2K版】TD2KHU(带11.6寸显示)', '深圳市三锵泰达光学仪器有限公司', NULL, NULL, '2023-08-23', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '深圳市福田区源柏泰电子经营部', NULL, NULL, NULL, NULL, '研发中心刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886094295042, NULL, NULL, 'GPA2023NL039', '便携触屏示波器', 'DS4T1012 主机+探头+便携包', '深圳市梦源科技有限公司', NULL, NULL, '2023-08-16', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '深圳市梦源科技有限公司', NULL, NULL, NULL, NULL, '研发中心刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886132043778, NULL, NULL, 'GPA2023NL040', '显微镜', '三锵泰达TD-745A双目体视显微镜 TD-745A【标准板', '深圳市三锵泰达光学仪器有限公司', NULL, NULL, '2023-08-21', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '深圳市福田区源柏泰电子经营部', NULL, NULL, NULL, NULL, '维修组贾留勇使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886169792514, NULL, NULL, 'GOA2023NL195', 'Teclast/台电 X4 大陆版 6+25', 'X4大陆版 6+256', '台电天猫店', NULL, NULL, '2023-08-28', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '深圳市佳利途科技有限公司', NULL, NULL, NULL, NULL, 'SMT线首件确认');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886211735553, NULL, NULL, 'GPB2023NL043', 'PTB 灯罩 超声波模具', '20Khz', '东和超音波机械设备有限公司', NULL, NULL, '2023-09-06', NULL, '组调三线', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '东和超音波机械设备有限公司', NULL, NULL, NULL, NULL, '老设备损坏,新设备升级治具');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886249484290, NULL, NULL, 'GPB2023NL044', 'PTB 滤光片 超声波模具', '20K', '东和超音波机械设备有限公司', NULL, NULL, '2023-09-06', NULL, '组调三线', NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '东和超音波机械设备有限公司', NULL, NULL, NULL, NULL, '老设备损坏,新设备升级治具');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886291427329, NULL, NULL, 'GPD2023NL150', '测试检测平台', '0.01精度隐藏式C3丝杆滑台模组', '成都市联动瑞芯科技有限公司', NULL, NULL, '2023-09-11', NULL, '研发重点实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '成都市联动瑞芯科技有限公司', NULL, NULL, NULL, NULL, '研发重点实验室使用,刘伟请购');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886329176066, NULL, NULL, 'GPC2023NL060', '排气装置(风管、风机)', '定制', '厂制', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, NULL, '食堂厨具系统设备,综管负责');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886366924801, NULL, NULL, 'GPD2023NL151', '四层架', '1400*600*1800', '厂制', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, NULL, '食堂厨具系统设备,综管负责');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886408867841, NULL, NULL, 'GPD2023NL152', '双层工作台', '1000*800*850', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, NULL, '食堂厨具系统设备,综管负责');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886446616578, NULL, NULL, 'GPD2023NL153', '保温工作台', '1500*700*800', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, NULL, '食堂厨具系统设备,综管负责');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886484365313, NULL, NULL, 'GPD2023NL154', '保温工作台', '1500*700*800', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, NULL, '食堂厨具系统设备,综管负责');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886568251394, NULL, NULL, 'GPG2023NL141', '保温柜', '700*700*868', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, NULL, '食堂厨具系统设备,综管负责');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886601805826, NULL, NULL, 'GPD2023NL156', '工作台', '1200*450*800', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, NULL, '食堂厨具系统设备,综管负责');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886685691906, NULL, NULL, 'GPD2023NL157', '定制工作台', '600*600*800', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, NULL, '食堂厨具系统设备,综管负责');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886731829249, NULL, NULL, 'GPD2023NL158', '定制工作台', '600*600*800', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, NULL, '食堂厨具系统设备,综管负责');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886782160898, NULL, NULL, 'GPD2023NL159', '双层推车', '900*600*800', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, NULL, '食堂厨具系统设备,综管负责');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886828298242, NULL, NULL, 'GPD2023NL160', '保温车', '700*700*800', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, NULL, '食堂厨具系统设备,综管负责');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886882824193, NULL, NULL, 'GPG2023NL142', '燃气炉', '1500*800*800', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, NULL, '食堂厨具系统设备,综管负责');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886937350145, NULL, NULL, 'GPG2023NL143', '加热炉', '700*700*500', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, NULL, '食堂厨具系统设备,综管负责');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217886979293185, NULL, NULL, 'GPD2023NL161', '双门保温车', '1410*715*1755', '美时', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, NULL, '食堂厨具系统设备,综管负责');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887029624834, NULL, NULL, 'GPD2023NL162', '托盘架车', '460*650*1800', '厂制品', NULL, NULL, '2023-08-15', NULL, '3#楼1F', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-09', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '上海斌威酒店成套设备工程有限公司', NULL, NULL, NULL, NULL, '食堂厨具系统设备,综管负责');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887079956481, NULL, NULL, 'GPD2023NA164', '双层防静电推车', '60*40*110CM', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-09-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887126093825, NULL, NULL, 'GPD2023NA165', '双层防静电推车', '60*40*110CM', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-09-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:57', NULL, '2025-02-14 09:53:57', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887172231169, NULL, NULL, 'GPD2023NA166', '双层防静电推车', '60*40*110CM', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-09-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887218368513, NULL, NULL, 'GPD2023NA167', '双层防静电推车', '60*40*110CM', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-09-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887268700161, NULL, NULL, 'GPD2023NA168', '双层防静电推车', '60*40*110CM', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-09-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887306448898, NULL, NULL, 'GPD2023NA169', '双层防静电推车', '60*40*110CM', '苏州鸿得莱金属制品有限公司', NULL, NULL, '2023-09-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-12', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州鸿得莱金属制品有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887344197633, NULL, NULL, 'GPD2023NA163', '登高车', 'GTJZ12 品牌:今朝飞翔', '济南朝翔升降机械有限公司', NULL, NULL, '2023-10-09', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '济南朝翔升降机械有限公司', NULL, NULL, NULL, NULL, '安徽公司一楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887402917890, NULL, NULL, 'GPC2023NL061', '激光塑料焊接机', '双平台振镜激光塑料焊接设备', '昆山欣合通精密机械科技有限公司', NULL, NULL, '2023-08-23', NULL, '组调三线', NULL, NULL, NULL, NULL, NULL, NULL, '2023-10-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山欣合通精密机械科技有限公司', NULL, NULL, NULL, NULL, '三楼新车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887453249537, NULL, NULL, 'GPC2023NL062', '智能称重扫描一体机', 'SJJ-EX002 称重范围50KG', '深圳市随嘉加科技有限公司', NULL, NULL, '2023-10-10', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '深圳市随嘉加科技有限公司', NULL, NULL, NULL, NULL, '成品库使用,新大楼一楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887495192577, NULL, NULL, 'GPD2023NA170', '高低温间货架', '加厚中型200*60*200', '苏州凯立金金属制品有限公司', NULL, NULL, '2023-10-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州凯立金金属制品有限公司', NULL, NULL, NULL, NULL, '安徽兰宝步入室高低温箱使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887541329921, NULL, NULL, 'GPD2023NA171', '高低温间货架', '加厚中型200*60*200', '苏州凯立金金属制品有限公司', NULL, NULL, '2023-10-30', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州凯立金金属制品有限公司', NULL, NULL, NULL, NULL, '安徽兰宝步入室高低温箱使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887579078658, NULL, NULL, 'GPC2023NA063', '燃气蒸汽发生器', 'DN-0.1TY', '江苏鑫达能热能环保科技有限公司', NULL, NULL, '2023-10-18', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '江苏鑫达能热能环保科技有限公司', NULL, NULL, NULL, NULL, '安徽环保使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887621021697, NULL, NULL, 'GPC2023NA064', '燃气蒸汽发生器', 'DN-0.1TY', '江苏鑫达能热能环保科技有限公司', NULL, NULL, '2023-10-18', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '江苏鑫达能热能环保科技有限公司', NULL, NULL, NULL, NULL, '安徽环保使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887675547650, NULL, NULL, 'GPC2023NA065', '小型台式铣钻攻床', '(ZXG7032/1500W/220V)单相 品牌:德克', '温岭市泽国江日机械厂(普通合伙)', NULL, NULL, '2023-10-18', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-10', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '温岭市泽国江日机械厂(普通合伙)', NULL, NULL, NULL, NULL, '安徽兰宝生技使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887721684994, NULL, NULL, 'GPA2023NL041', '标准型光束分析仪系统', 'AUT CMOS-1.001-Nano', '上海昊量光电设备有限公司', NULL, NULL, '2023-11-03', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '上海昊量光电设备有限公司', NULL, NULL, NULL, NULL, '研发中心周成松使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887772016642, NULL, NULL, 'GPA2023NL042', '直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-11-15', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, NULL, '生产技术部产品组使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887822348289, NULL, NULL, 'GPA2023NL043', '直流电源', 'GPS-3030DD', '固伟电子(苏州)有限公司', NULL, NULL, '2023-11-15', NULL, '生产技术部', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州德计仪器仪表有限公司', NULL, NULL, NULL, NULL, '生产技术部产品组使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887868485634, NULL, NULL, 'GPA2023NL045', '自动光学检测机', '德律TR7700在线型', '台湾德律科技股份有限公司', NULL, NULL, '2023-11-13', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '实物2020年到货,补验收单');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887906234369, NULL, NULL, 'GPA2023NL044', '红外光谱仪辐照计', 'HP350FR', '杭州双色智能检测仪器有限公司', NULL, NULL, '2023-12-04', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '杭州双色智能检测仪器有限公司', NULL, NULL, NULL, NULL, '研发中心杨佳琦使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887948177409, NULL, NULL, 'GOA2023NL251', '服务器', 'DELL T40塔式服务器 I7-9700/32G/256GSSD+2*2T', '上海签成企业管理有限公司', NULL, NULL, '2023-10-12', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '上海签成企业管理有限公司', NULL, NULL, NULL, NULL, '安徽公司使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217887990120449, NULL, NULL, 'GPB2023NA045', '折弯机模具 (刀模)', '材料42CrMo 锻件', '江苏金方圆数控机床有限公司', NULL, NULL, '2023-11-21', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-13', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '江苏金方圆数控机床有限公司', NULL, NULL, NULL, NULL, '安徽公司钣金车间折弯机使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888040452098, NULL, NULL, 'GPC2023NA066', '半导体激光打标系统', 'DPA-15W', '苏州佰诺斯智能科技有限公司', NULL, NULL, '2023-07-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州佰诺斯智能科技有限公司', NULL, NULL, NULL, NULL, '配PSE-YC25传感器自动化线进厂,单独购买');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888308887553, NULL, NULL, 'GPC2023NA067', '塑料激光焊接系统', '配PSE-YC25传感器组装线', '昆山欣合通精密机械科技有限公司', NULL, NULL, '2023-07-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山欣合通精密机械科技有限公司', NULL, NULL, NULL, NULL, '配PSE-YC25传感器自动化线进厂,单独购买');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888350830593, NULL, NULL, 'GOA2023NL252', '针式打印机', '惠普', '惠普', NULL, NULL, '2023-12-19', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '惠普', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888388579329, NULL, NULL, 'NPG2023H019', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888430522370, NULL, NULL, 'NPG2023H020', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888480854018, NULL, NULL, 'NPG2023H021', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888535379969, NULL, NULL, 'NPG2023H022', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888589905922, NULL, NULL, 'NPG2023H023', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888636043266, NULL, NULL, 'NPG2023H024', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888677986306, NULL, NULL, 'NPG2023H025', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888728317953, NULL, NULL, 'NPG2023H026', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888787038210, NULL, NULL, 'NPG2023H027', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888828981249, NULL, NULL, 'NPG2023H028', '智能无铅焊台', 'QUICK203', '快克智能装备股份有限公司', NULL, NULL, '2023-12-15', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '快克智能装备股份有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888883507201, NULL, NULL, 'GPC2023NL068', '双工位铜箔包胶机', '双工位铜箔包胶机', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-10-30', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '前加工磁芯包铜箔使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888938033153, NULL, NULL, 'GPA2023NL047', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '安徽兰宝传感', NULL, NULL, '发票开具但已做进项转出', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪,2024.03.02转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217888979976193, NULL, NULL, 'GPA2023NL048', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '制造课', NULL, NULL, '发票开具但已做进项转出', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889021919233, NULL, NULL, 'GPA2023NL049', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '制造课', NULL, NULL, '发票开具但已做进项转出', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889063862273, NULL, NULL, 'GPA2023NL050', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '安徽兰宝传感', NULL, NULL, '发票开具但已做进项转出', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪,2024.03.02转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889109999617, NULL, NULL, 'GPA2023NL051', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '制造课', NULL, NULL, '发票开具但已做进项转出', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889164525569, NULL, NULL, 'GPA2023NL052', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '制造课', NULL, NULL, '?未开票', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889214857218, NULL, NULL, 'GPA2023NL053', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '制造课', NULL, NULL, '?未开票', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889256800257, NULL, NULL, 'GPA2023NL054', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '安徽兰宝传感', NULL, NULL, '?未开票', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889307131905, NULL, NULL, 'GPA2023NL055', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '安徽兰宝传感', NULL, NULL, '?未开票', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889357463554, NULL, NULL, 'GPA2023NL056', '智能传感器测试仪', 'HT-2022A', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-08-15', NULL, '安徽兰宝传感', NULL, NULL, '?未开票', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889407795201, NULL, NULL, 'GPA2023NL057', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889458126849, NULL, NULL, 'GPA2023NL058', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889504264193, NULL, NULL, 'GPA2023NL059', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889550401537, NULL, NULL, 'GPA2023NL060', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889604927489, NULL, NULL, 'GPA2023NL061', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889655259138, NULL, NULL, 'GPA2023NL062', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889697202178, NULL, NULL, 'GPA2023NL063', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889743339522, NULL, NULL, 'GPA2023NL064', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889797865474, NULL, NULL, 'GPA2023NL065', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889835614209, NULL, NULL, 'GPA2023NL066', '智能传感器测试仪', 'HT-2022A', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889890140161, NULL, NULL, 'GPA2023NL067', '高精度传感器测试仪', 'ZTX-022-001', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪,紫色面板,2024.03.02转移到安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889944666113, NULL, NULL, 'GPA2023NL068', '高精度传感器测试仪', 'ZTX-022-001', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪,紫色面板');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217889986609154, NULL, NULL, 'GPA2023NL069', '高精度传感器测试仪', 'ZTX-022-001', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-08-25', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪,紫色面板');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890032746497, NULL, NULL, 'GPA2023NL070', '高精度传感器测试仪', 'ZTX-022-001', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-11-01', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪,紫色面板');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890074689537, NULL, NULL, 'GPA2023NL071', '高精度传感器测试仪', 'ZTX-022-001', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-11-01', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪,紫色面板');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890112438274, NULL, NULL, 'GPA2023NL072', '高精度传感器测试仪', 'ZTX-022-001', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-11-01', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪,紫色面板');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890162769921, NULL, NULL, 'GPA2023NL073', '高精度传感器测试仪', 'ZTX-022-001', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-11-01', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪,紫色面板');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890217295874, NULL, NULL, 'GPA2023NL074', '高精度传感器测试仪', 'ZTX-022-001', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-11-01', NULL, '安徽兰宝传感', NULL, NULL, '?未开票', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪,紫色面板');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890259238914, NULL, NULL, 'GPA2023NL075', '高精度传感器测试仪', 'ZTX-022-001', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-11-01', NULL, '安徽兰宝传感', NULL, NULL, '?未开票', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪,紫色面板');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890301181953, NULL, NULL, 'GPA2023NL076', '高精度传感器测试仪', 'ZTX-022-001', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-11-01', NULL, '安徽兰宝传感', NULL, NULL, '?未开票', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪,紫色面板');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890347319297, NULL, NULL, 'GPA2023NL077', '高精度传感器测试仪', 'ZTX-022-001', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-11-01', NULL, '制造课', NULL, NULL, '?未开票', NULL, NULL, NULL, '2023-12-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, '定制桌面式测试仪');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890393456641, NULL, NULL, 'GPC2023NA045', 'PU05前段装配设备', 'PU05前段装配设备共7个环节一条线', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-05-12', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-01-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890439593985, NULL, NULL, 'GPG2023NA144', '供气管道、汽化炉', '江苏杨帆气体控制设备有限公司', '江苏杨帆气体控制设备有限公司', NULL, NULL, '2023-12-04', NULL, '安徽兰宝兰埔', NULL, NULL, NULL, NULL, NULL, NULL, '2024-01-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '江苏杨帆气体控制设备有限公司', NULL, NULL, NULL, NULL, '安徽兰埔车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890485731330, NULL, NULL, 'GOG2023NL104', '海康2D线扫套装', 'MV-CL042-91GM 海康威视', '海康威视', NULL, NULL, '2023-12-04', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-01-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '苏州中昌智能科技有限公司', NULL, NULL, NULL, NULL, '研发部大厅');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890527674369, NULL, NULL, 'GPC2024NL002', '工业热缩管吹风机', 'SS-AirHST-02 1500W+气源干燥处理器', '广东三生智能科技有限公司', NULL, NULL, '2024-01-11', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-01-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '广东三生智能科技有限公司', NULL, NULL, NULL, NULL, '前加工吹热缩管使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890586394625, NULL, NULL, 'GPC2024NL003', 'UV胶固化光源照射机', '标准一拖二 HY-UV0003', '珠海市皓云光电科技有限公司', NULL, NULL, '2024-01-10', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-01-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '珠海市皓云光电科技有限公司', NULL, NULL, NULL, NULL, '淘宝购买UV固化机照射灯一拖二');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890632531970, NULL, NULL, 'GPA2024NL001', '卤素水分测定仪', 'DS100A/2mg', '上海焕颢仪器有限公司', NULL, NULL, '2024-01-05', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-01-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '上海焕颢仪器有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890678669313, NULL, NULL, 'GPC2024NA005', '高精微量注塑机', 'TYL-400.J', '昆山大禹集成智能科技有限公司', NULL, NULL, '2024-01-03', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-03-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '昆山大禹集成智能科技有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890733195266, NULL, NULL, 'GPC2024NL006', '自动修边去毛刺机', '40L(0.55千瓦)', '湖州双林恒丰研磨材料厂', NULL, NULL, '2024-02-01', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2024-03-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '湖州双林恒丰研磨材料厂', NULL, NULL, NULL, NULL, '金工间打磨毛边用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890775138305, NULL, NULL, 'GPA2024NL002', '普瑞逊计数电子天平', 'HT-600NC 600g/0.01g', '成都普瑞逊电子有限公司', NULL, NULL, '2024-03-04', NULL, '资材课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-03-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '上海宜工电子有限公司', NULL, NULL, NULL, NULL, '材料仓库使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890821275650, NULL, NULL, 'GPC2024NA008', '氩弧焊机', 'WS-250S套餐二(10米焊枪送气表气管)', '上海歙州实业发展有限公司', NULL, NULL, '2024-03-22', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '上海歙州实业发展有限公司', NULL, NULL, NULL, NULL, '安徽环保制造车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890875801601, NULL, NULL, 'GPC2024NA009', '氩弧焊机', 'WS-250S套餐二(10米焊枪送气表气管)', '上海歙州实业发展有限公司', NULL, NULL, '2024-03-22', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '上海歙州实业发展有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890926133249, NULL, NULL, 'GPC2024NA010', '氩弧焊电焊两用焊机', '瑞凌TIG-250CT+3米焊钳(电流10-230A)', '兰山区威克士工具中心', NULL, NULL, '2024-03-15', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '兰山区威克士工具中心', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217890968076290, NULL, NULL, 'GPA2024NL003', '数控分度盘', '数控CNC HD-T640改制五轴 THRT-5AX-AR170', '嘉兴天合机械有限公司', NULL, NULL, '2024-03-20', NULL, '金工车间', NULL, NULL, NULL, NULL, NULL, NULL, '2024-04-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '嘉兴天合机械有限公司', NULL, NULL, NULL, NULL, '金工间厚道加工中心改装用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891018407938, NULL, NULL, 'GPD2024NA001', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽资材仓库夏典盛使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891056156673, NULL, NULL, 'GPD2024NA002', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽资材仓库夏典盛使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891093905409, NULL, NULL, 'GPD2024NA003', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽资材仓库夏典盛使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891131654145, NULL, NULL, 'GPD2024NA004', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽资材仓库夏典盛使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891169402881, NULL, NULL, 'GPD2024NA005', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽资材仓库夏典盛使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891215540226, NULL, NULL, 'GPD2024NA006', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽资材仓库夏典盛使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891261677570, NULL, NULL, 'GPD2024NA007', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽资材仓库夏典盛使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891316203522, NULL, NULL, 'GPD2024NA008', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:58', NULL, '2025-02-14 09:53:58', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽资材仓库夏典盛使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891366535169, NULL, NULL, 'GPD2024NA009', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽资材仓库夏典盛使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891416866818, NULL, NULL, 'GPD2024NA010', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽资材仓库夏典盛使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891467198466, NULL, NULL, 'GPD2024NA011', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽资材仓库夏典盛使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891513335809, NULL, NULL, 'GPD2024NA012', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽资材仓库夏典盛使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891551084546, NULL, NULL, 'GPD2024NA013', '中型货架', '1800*600*2000mm 5层板4层空 一拖六*13组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽资材仓库夏典盛使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891597221889, NULL, NULL, 'GPD2024NA014', '中型货架', '1800*600*2000mm 5层板4层空 重型 载重300公斤', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽设备组维修间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891643359233, NULL, NULL, 'GPD2024NA015', '中型货架', '1800*600*2000mm 5层板4层空 重型 载重300公斤', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽设备组维修间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891689496577, NULL, NULL, 'GPD2024NA016', '中型货架', '1800*600*2000mm 5层板4层空 重型 载重300公斤', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, '安徽设备组维修间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891731439617, NULL, NULL, 'GPG2024NA002', '鼓风恒温干燥箱', 'DHG-9140A', '睦尼试验设备(上海)有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '睦尼试验设备(上海)有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891777576961, NULL, NULL, 'GPC2024NA011', '氩弧焊机', 'WSM-315E【10米焊枪】重工业型', '上海歙州实业发展有限公司', NULL, NULL, '2024-04-23', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海歙州实业发展有限公司', NULL, NULL, NULL, NULL, '安徽钣金车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891827908609, NULL, NULL, 'GPC2024NA012', '氩弧焊机', 'WS-250S套餐二(10米焊枪送气表气管)', '上海歙州实业发展有限公司', NULL, NULL, '2024-04-23', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海歙州实业发展有限公司', NULL, NULL, NULL, NULL, '安徽钣金车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891874045954, NULL, NULL, 'GPG2024NA047', '工业吸尘器', 'RS-J2078荣事达', '安徽荣庆清洁科技有限公司', NULL, NULL, '2024-04-03', NULL, '安徽兰宝兰埔', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '安徽荣庆清洁科技有限公司', NULL, NULL, NULL, NULL, '安徽兰埔项目上使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891928571906, NULL, NULL, 'GPG2024NA048', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217891970514945, NULL, NULL, 'GPG2024NA049', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892016652289, NULL, NULL, 'GPG2024NA050', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892058595329, NULL, NULL, 'GPG2024NA051', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892104732674, NULL, NULL, 'GPG2024NA052', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892150870017, NULL, NULL, 'GPG2024NA053', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892192813057, NULL, NULL, 'GPG2024NA054', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892238950402, NULL, NULL, 'GPG2024NA055', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892276699138, NULL, NULL, 'GPG2024NA056', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892310253569, NULL, NULL, 'GPG2024NA057', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892360585217, NULL, NULL, 'GPG2024NA058', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892402528258, NULL, NULL, 'GPG2024NA059', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892448665602, NULL, NULL, 'GPG2024NA060', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892490608642, NULL, NULL, 'GPG2024NA061', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892540940289, NULL, NULL, 'GPG2024NA062', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892574494722, NULL, NULL, 'GPG2024NA063', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892620632065, NULL, NULL, 'GPG2024NA064', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892662575106, NULL, NULL, 'GPG2024NA065', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892704518145, NULL, NULL, 'GPG2024NA066', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892750655489, NULL, NULL, 'GPG2024NA067', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892796792833, NULL, NULL, 'GPG2024NA068', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892842930178, NULL, NULL, 'GPG2024NA069', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892884873218, NULL, NULL, 'GPG2024NA070', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892926816258, NULL, NULL, 'GPG2024NA071', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217892972953601, NULL, NULL, 'GPG2024NA072', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893014896641, NULL, NULL, 'GPG2024NA073', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893056839681, NULL, NULL, 'GPG2024NA074', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893107171330, NULL, NULL, 'GPG2024NA075', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893149114370, NULL, NULL, 'GPG2024NA076', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-18', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893191057410, NULL, NULL, 'GPG2024NA077', '雅马哈电动飞达', '电动飞达YAMAHA SS 8mm', '苏州市广嘉贺电子有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州市广嘉贺电子有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893237194753, NULL, NULL, 'GPD2024NA021', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893283332098, NULL, NULL, 'GPD2024NA022', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893325275138, NULL, NULL, 'GPD2024NA023', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893371412482, NULL, NULL, 'GPD2024NA024', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893409161218, NULL, NULL, 'GPD2024NA025', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893442715649, NULL, NULL, 'GPD2024NA026', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893480464385, NULL, NULL, 'GPD2024NA027', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893530796034, NULL, NULL, 'GPD2024NA028', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893581127682, NULL, NULL, 'GPD2024NA029', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893623070722, NULL, NULL, 'GPD2024NA030', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893673402370, NULL, NULL, 'GPD2024NA031', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893715345409, NULL, NULL, 'GPD2024NA032', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893761482754, NULL, NULL, 'GPD2024NA033', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893807620098, NULL, NULL, 'GPD2024NA034', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893870534658, NULL, NULL, 'GPD2024NA035', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893916672001, NULL, NULL, 'GPD2024NA036', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217893962809346, NULL, NULL, 'GPD2024NA037', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894008946690, NULL, NULL, 'GPD2024NA038', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894063472641, NULL, NULL, 'GPD2024NA039', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894113804290, NULL, NULL, 'GPD2024NA040', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894151553025, NULL, NULL, 'GPD2024NA041', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894197690369, NULL, NULL, 'GPD2024NA042', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894243827713, NULL, NULL, 'GPD2024NA043', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894298353666, NULL, NULL, 'GPD2024NA044', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894340296706, NULL, NULL, 'GPD2024NA045', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894390628354, NULL, NULL, 'GPD2024NA046', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894440960002, NULL, NULL, 'GPD2024NA047', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894499680257, NULL, NULL, 'GPD2024NA048', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894550011906, NULL, NULL, 'GPD2024NA049', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894612926465, NULL, NULL, 'GPD2024NA050', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894654869505, NULL, NULL, 'GPD2024NA051', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894713589762, NULL, NULL, 'GPD2024NA052', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894768115714, NULL, NULL, 'GPD2024NA053', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894826835970, NULL, NULL, 'GPD2024NA054', '精益管推车', '带福马轮650*490*710mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894868779009, NULL, NULL, 'GPD2024NA055', '精益管推车', '带福马轮650*450*850mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894919110657, NULL, NULL, 'GPD2024NA056', '精益管推车', '带福马轮800*600*800mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217894965248001, NULL, NULL, 'GPD2024NA057', '精益管推车', '带福马轮800*600*800mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-04-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-14', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感器车间二楼使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895015579649, NULL, NULL, 'GPA2024NL004', '水分检测设备', '水分检测设备设计及加工', '苏州择智工业设计有限公司', NULL, NULL, '2024-04-03', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-23', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州择智工业设计有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895065911298, NULL, NULL, 'GPD2024NA058', '距离测试平台', '距离测试平台2000*800*1650mm', '上海昶申铝业有限公司', NULL, NULL, '2024-05-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895103660033, NULL, NULL, 'GPD2024NA059', '距离测试平台', '距离测试平台2000*800*1650mm', '上海昶申铝业有限公司', NULL, NULL, '2024-05-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895141408770, NULL, NULL, 'GPD2024NA060', '距离测试平台', '距离测试平台2000*800*1650mm', '上海昶申铝业有限公司', NULL, NULL, '2024-05-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895183351809, NULL, NULL, 'GPD2024NA061', '距离测试平台', '距离测试平台2000*800*1650mm', '上海昶申铝业有限公司', NULL, NULL, '2024-05-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895221100545, NULL, NULL, 'GPC2024NL015', '同轴剥线机', 'Y-5807半自动', '常州市嘉研自动化设备有限公司', NULL, NULL, '2024-05-07', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '常州市嘉研自动化设备有限公司', NULL, NULL, NULL, NULL, '实物在安徽,未走转移单');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895271432193, NULL, NULL, 'GPC2024NA007', 'PU05自动化设备', '众泰兴—PU05后段装配组装线(第二段) DFM', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-07-25', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895321763842, NULL, NULL, 'GPC2024NA004', 'PSE-YC25自动化设备', 'PSE-YC25传感器组装线', '苏州欣宝自动化设备有限公司', NULL, NULL, '2023-07-28', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '苏州欣宝自动化设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895367901185, NULL, NULL, 'GPA2024NA005', '密封检测仪+治具', 'F760-D020+RM-020', '上海仁莫电子科技有限公司', NULL, NULL, '2024-04-03', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '上海仁莫电子科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895422427138, NULL, NULL, 'GPC2024NL014', '传感器操作频率设备', '定制规格', '昆山众泰兴自动化设备有限公司', NULL, NULL, '2023-09-25', NULL, '标准部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '昆山众泰兴自动化设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895472758786, NULL, NULL, 'GPB2024NL001', '超声波上模(钢制)', 'LE40/80铜柱超声波上模具', '昆山东和超声波设备有限公司', NULL, NULL, '2023-05-06', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:53:59', NULL, '2025-02-14 09:53:59', NULL, '昆山东和超声波设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895527284737, NULL, NULL, 'GPC2024NL017', '线高精度喷射点胶机', 'IS-300H APJ1500', '深圳市轴心自控技术有限公司', NULL, NULL, '2024-04-02', NULL, 'SMT线', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '深圳市轴心自控技术有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895573422081, NULL, NULL, 'GPC2024NA018', '剥皮扭线机', '3fn气动', '中山市东风镇大塑自动化机械设备商行', NULL, NULL, '2024-05-13', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-05-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '中山市东风镇大塑自动化机械设备商行', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895619559426, NULL, NULL, 'GPD2024NL062', '光电测试平台', '距离测试平台2000*800*1650mm', '上海昶申铝业有限公司', NULL, NULL, '2024-02-20', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-06', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, '上海2024.02请购,安徽使用,资产2024.6.6转安徽管理');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895669891074, NULL, NULL, 'GPC2024NA019', '自动绕线扎线机', 'BOQO2000', '东莞市博强自动化设备有限公司', NULL, NULL, '2024-05-14', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '东莞市博强自动化设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895711834114, NULL, NULL, 'GPC2024NA020', '除尘器', 'JN SK04+5.5k w+50HZ+4 桶 +1220x106 0x2250mm', '南京英奇环保设备有限公司', NULL, NULL, '2024-04-19', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-07', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '南京英奇环保设备有限公司', NULL, NULL, NULL, NULL, '安徽环保钣金车间,配合宏山激光机设备使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895753777153, NULL, NULL, 'GPA2024NL007', '色差仪', '通用色差计NR10QC', '深圳市三恩时科技有限公司', NULL, NULL, '2024-06-05', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '深圳市三恩时科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895795720194, NULL, NULL, 'GPG2024NA078', '二期天然气安装工程', '安徽工厂二期定制管道', '马鞍山港华燃气', NULL, NULL, '2024-05-06', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '马鞍山港华燃气', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895841857537, NULL, NULL, 'GPC2024NA021', '氩弧焊机', 'WSM-315E【10米焊枪】重工业型 水冷', '上海歙州实业发展有限公司', NULL, NULL, '2024-06-07', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海歙州实业发展有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895875411970, NULL, NULL, 'GPC2024NA022', '氩弧焊机', 'WSM-315E【10米焊枪】重工业型 水冷', '上海歙州实业发展有限公司', NULL, NULL, '2024-06-07', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海歙州实业发展有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895921549314, NULL, NULL, 'GPC2024NA023', '工业热缩管吹风机', 'SS-AirHST-02 1500W 配件气源干燥处理器SS3000-03(', '广东三生智能科技有限公司', NULL, NULL, '2024-06-07', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '广东三生智能科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217895963492354, NULL, NULL, 'GPC2024NA024', '空气压缩机组', 'CA 37TKET', '权伟压缩机(芜湖)有限公司', NULL, NULL, '2024-04-30', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '权伟压缩机(芜湖)有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896001241089, NULL, NULL, 'GPD2024NA063', '货架', '1800*600*1250mm 3层板2层空 一托三*3组 重', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896043184130, NULL, NULL, 'GPD2024NA064', '货架', '1800*600*1250mm 3层板2层空 一托三*3组 重', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896093515778, NULL, NULL, 'GPD2024NA065', '货架', '1800*600*1250mm 3层板2层空 一托三*3组 重', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896139653122, NULL, NULL, 'GPD2024NA066', '货架', '1800*600*2000mm 5层板4层空 一托一*4组 重', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896189984770, NULL, NULL, 'GPD2024NA067', '货架', '1800*600*2000mm 5层板4层空 一托一*4组 重', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896248705025, NULL, NULL, 'GPD2024NA068', '货架', '1800*600*2000mm 5层板4层空 一托一*4组 重', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896294842369, NULL, NULL, 'GPD2024NA069', '货架', '1800*600*2000mm 5层板4层空 一托一*4组 重', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896353562625, NULL, NULL, 'GPD2024NA070', '货架', '1800*600*1250mm 3层板2层空 一托二*1组 重', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896395505666, NULL, NULL, 'GPD2024NA071', '货架', '1800*600*2000mm 5层板4层空 一托三*4组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896450031617, NULL, NULL, 'GPD2024NA072', '货架', '1800*600*2000mm 5层板4层空 一托三*4组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896500363265, NULL, NULL, 'GPD2024NA073', '货架', '1800*600*2000mm 5层板4层空 一托三*4组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896542306305, NULL, NULL, 'GPD2024NA074', '货架', '1800*600*2000mm 5层板4层空 一托三*4组', '安徽诚润仓储设备有限公司', NULL, NULL, '2024-06-08', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽诚润仓储设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896584249346, NULL, NULL, 'GPC2024NA025', '无极变速放线机', '100kg', '深圳市余亿自动化设备有限公司', NULL, NULL, '2024-06-12', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-25', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '深圳市余亿自动化设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896626192385, NULL, NULL, 'GPA2024NL008', 'IO-Link测试设备', '兰宝定制(半成品测试)', '苏州市德智电子有限公司', NULL, NULL, '2024-05-08', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '苏州市德智电子有限公司', NULL, NULL, NULL, NULL, '兰宝定制设备(用于IO link半成品板测试)');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896663941122, NULL, NULL, 'GPA2024NL009', 'IO-Link测试设备', '兰宝定制(成品测试)', '苏州市德智电子有限公司', NULL, NULL, '2024-05-08', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-06-26', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '苏州市德智电子有限公司', NULL, NULL, NULL, NULL, '兰宝定制设备(用于IO link成品板测试)');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896705884162, NULL, NULL, 'GPD2024NA079', '防静电维修工作台', '带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2024-06-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896743632897, NULL, NULL, 'GPD2024NA080', '防静电维修工作台', '带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2024-06-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896798158850, NULL, NULL, 'GPD2024NA081', '防静电维修工作台', '带两个抽屉', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2024-06-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896835907585, NULL, NULL, 'GPC2024NA027', '点胶机 (控制器)', 'D-260轴心', '深圳市轴心自控技术有限公司', NULL, NULL, '2024-06-17', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '深圳市轴心自控技术有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896877850625, NULL, NULL, 'GPC2024NA029', 'VOC发生器', '2路VOC发生装置', '苏州孚然德实验设备有限公司', NULL, NULL, '2023-10-18', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '苏州孚然德实验设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896919793666, NULL, NULL, 'GPG2024NA081', '智能称重扫描一体机', 'SJJ-EX002 称重范围50KG', '深圳市随嘉加科技有限公司', NULL, NULL, '2024-06-14', NULL, '安徽兰宝仓库', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '深圳市随嘉加科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217896970125314, NULL, NULL, 'GPC2024NL026', 'A4折纸机', 'gar02-4+Gar02-K', '广州市帝森机电设备有限公司', NULL, NULL, '2024-06-14', NULL, '生产车间', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '广州市帝森机电设备有限公司', NULL, NULL, NULL, NULL, '上海公司检包线,自动叠说明书使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897020456961, NULL, NULL, 'GPC2024NA030', '光纤激光切割机', '型号:6020-6000W', '广东宏石激光技术股份有限公司', NULL, NULL, '2024-04-22', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '广东宏石激光技术股份有限公司', NULL, NULL, NULL, NULL, '装机一月内故障两次,验收期延迟1个月完成。');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897074982914, NULL, NULL, 'GPC2024NA034', '电动单梁起重机', 'LD10t-28.5m H=9m', '河南卫华', NULL, NULL, '2024-02-05', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '河南卫华', NULL, NULL, NULL, NULL, '安徽公司钣金车使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897125314562, NULL, NULL, 'GPC2024NA035', '电动单梁起重机', 'LD10t-28.5m H=9m', '河南卫华', NULL, NULL, '2024-02-05', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '河南卫华', NULL, NULL, NULL, NULL, '安徽公司钣金车使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897175646209, NULL, NULL, 'GPC2024NA036', '电动单梁起重机', 'LD10t-28.5m H=9m', '河南卫华', NULL, NULL, '2024-02-05', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-07-29', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '河南卫华', NULL, NULL, NULL, NULL, '安徽公司钣金车使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897221783553, NULL, NULL, 'GPD2024NA082', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897267920897, NULL, NULL, 'GPD2024NA083', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897314058241, NULL, NULL, 'GPD2024NA084', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897360195585, NULL, NULL, 'GPD2024NA085', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897410527234, NULL, NULL, 'GPD2024NA086', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897448275970, NULL, NULL, 'GPD2024NA087', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897486024706, NULL, NULL, 'GPD2024NA088', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897523773441, NULL, NULL, 'GPD2024NA089', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897561522178, NULL, NULL, 'GPD2024NA090', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897599270913, NULL, NULL, 'GPD2024NA091', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897670574082, NULL, NULL, 'GPD2024NA092', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897712517121, NULL, NULL, 'GPD2024NA093', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897775431681, NULL, NULL, 'GPD2024NA094', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897817374722, NULL, NULL, 'GPD2024NA095', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897863512066, NULL, NULL, 'GPD2024NA096', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897905455105, NULL, NULL, 'GPD2024NA097', '精益管工作台', '带翻转架898*778*2000mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897947398146, NULL, NULL, 'GPD2024NA098', '防静电工作台', '120*60*75*160mm 带两个抽屉,三个插座', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2024-07-08', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217897993535490, NULL, NULL, 'GPD2024NA099', '防静电工作台', '120*60*75*160mm 带两个抽屉,三个插座', '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, '2024-07-08', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '苏州市相城区元和鑫卓钢木家具厂', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898039672833, NULL, NULL, 'GPD2024NA100', '精益管工作台', '900*600*858mm+配件', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898090004482, NULL, NULL, 'GPD2024NA101', '精益管工作台', '900*600*858mm+配件', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898136141826, NULL, NULL, 'GPD2024NA102', '精益管工作台', '900*600*858mm+配件', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898182279169, NULL, NULL, 'GPD2024NA103', '精益管工作台', '900*600*858mm+配件', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-15', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898228416514, NULL, NULL, 'GPD2024NA104', '瓶固定架', '蓝40L五瓶装 加大 加固款 赠膨胀螺丝', '衡水中博金属贸易有限公司', NULL, NULL, '2024-07-23', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '衡水中博金属贸易有限公司', NULL, NULL, NULL, NULL, '安徽环保钣金车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898274553857, NULL, NULL, 'GPD2024NA105', '瓶固定架', '蓝40L五瓶装 加大 加固款 赠膨胀螺丝', '衡水中博金属贸易有限公司', NULL, NULL, '2024-07-23', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '衡水中博金属贸易有限公司', NULL, NULL, NULL, NULL, '安徽环保钣金车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898324885505, NULL, NULL, 'GPD2024NA106', '瓶固定架', '蓝40L五瓶装 加大 加固款 赠膨胀螺丝', '衡水中博金属贸易有限公司', NULL, NULL, '2024-07-23', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '衡水中博金属贸易有限公司', NULL, NULL, NULL, NULL, '安徽环保钣金车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898379411458, NULL, NULL, 'GPD2024NA107', '瓶固定架', '蓝40L五瓶装 加大 加固款 赠膨胀螺丝', '衡水中博金属贸易有限公司', NULL, NULL, '2024-07-23', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '衡水中博金属贸易有限公司', NULL, NULL, NULL, NULL, '安徽环保钣金车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898425548801, NULL, NULL, 'GPD2024NA108', '钢网放置架', '按图定制1600*600*1660mm', '上海蓄莹实业有限公司', NULL, NULL, '2024-07-20', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, '安徽传感车间SMT线使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898463297537, NULL, NULL, 'GPD2024NL109', '折纸机工作台', '1430*580*690mm 按图定制', '上海昶申铝业有限公司', NULL, NULL, '2024-07-10', NULL, '检包线', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海昶申铝业有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898505240577, NULL, NULL, 'GPC2024NL037', '全自动电脑裁切机/切', '深圳迈腾 型号:MTF-200ST', '圳迈腾飞科技有限公司', NULL, NULL, '2024-07-30', NULL, '前加工线', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '圳迈腾飞科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898542989313, NULL, NULL, 'GPC2024NA038', '真空吸吊机', '整机承重 1600 公斤,外形尺寸 5*1 米', '得美能(广东)科技有限公司', NULL, NULL, '2024-07-23', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '得美能(广东)科技有限公司', NULL, NULL, NULL, NULL, '安徽环保钣金车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898593320962, NULL, NULL, 'GPC2024NA039', '气动攻丝机马达', '台湾原装M16马达 (含夹座) 直径56转速250', '常州晟鑫琦机电有限公司', NULL, NULL, '2024-07-23', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-19', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '常州晟鑫琦机电有限公司', NULL, NULL, NULL, NULL, '安徽环保钣金车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898702372865, NULL, NULL, 'GPA2024NL012', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-06-27', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, '现做20台里面,2024.08.27转移安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898744315905, NULL, NULL, 'GPA2024NL013', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-06-27', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, '现做20台里面,2024.08.27转移安徽公司');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898798841858, NULL, NULL, 'GPA2024NL014', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-06-27', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, '现做20台里面,放置在9700自动化设备里面调试工位');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898840784898, NULL, NULL, 'GPA2024NL015', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-06-27', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-21', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, '现做20台里面,在自动测试仪里面');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898882727938, NULL, NULL, 'GPC2024NL040', '压管机', 'DW-80分体壳环压设备', '景县明通机械设备有限公司', NULL, NULL, '2024-06-10', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '景县明通机械设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898924670978, NULL, NULL, 'GPA2024NL010', '粮食水分测试粉碎磨', '中储粮JSFM-III粮食水分测试粉碎磨', '广州沪瑞明仪器有限公司', NULL, NULL, '2024-08-07', NULL, '成都办事处', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '广州沪瑞明仪器有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217898966614018, NULL, NULL, 'GOB2024NA011', '标签打印机', 'A300E', '厦门汉印电子商务有限公司', NULL, NULL, '2024-08-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '厦门汉印电子商务有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899012751362, NULL, NULL, 'GOB2024NA012', '标签打印机', 'A300E', '厦门汉印电子商务有限公司', NULL, NULL, '2024-08-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '厦门汉印电子商务有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899063083009, NULL, NULL, 'GOB2024NA013', '标签打印机', 'A300E', '厦门汉印电子商务有限公司', NULL, NULL, '2024-08-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '厦门汉印电子商务有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899109220354, NULL, NULL, 'GOB2024NA014', '标签打印机', 'A300E', '厦门汉印电子商务有限公司', NULL, NULL, '2024-08-07', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '厦门汉印电子商务有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899159552002, NULL, NULL, 'GPA2024NL016', '光功率计', 'LP10(标准波长633nm)官方标配', '深圳市田诚电子有限公司', NULL, NULL, '2024-08-12', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '深圳市田诚电子有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899201495041, NULL, NULL, 'GPD2024NA110', '叉车', 'CPCD50-LQ19 柴油车5吨定制', '龙工叉车', NULL, NULL, '2024-07-08', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '马鞍山市龙威工程机械贸易有限公司', NULL, NULL, NULL, NULL, '安徽公司资材使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899243438081, NULL, NULL, 'GPC2024NA041', '手持式光纤激光焊接机', '2000w', '安徽好不贵激光科技有限公司', NULL, NULL, '2024-07-20', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '安徽好不贵激光科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899285381122, NULL, NULL, 'GPC2024NA043', '蒸发器', '0.2t/h 蒸发器+水处理器+燃烧机', '江苏鑫达能热能环保科技有限公司', NULL, NULL, '2024-07-23', NULL, '安徽兰宝环保', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '江苏鑫达能热能环保科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899323129857, NULL, NULL, 'GPC2024NA044', '氩弧焊机', 'WSM-315E', '上海沪工焊机(集团)有限公司', NULL, NULL, '2024-08-18', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海歙州实业发展有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899356684290, NULL, NULL, 'GPC2024NA045', '氩弧焊机', 'WSM-315E', '上海沪工焊机(集团)有限公司', NULL, NULL, '2024-08-18', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海歙州实业发展有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899394433026, NULL, NULL, 'GPG2024NA082', '车间隔离网', '上网下板+2米移动门,共72米', '上海奕尔金属丝网制品有限公司', NULL, NULL, '2024-08-18', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海奕尔金属丝网制品有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899436376065, NULL, NULL, 'GPD2024NA111', '自调式焊接滚轮架', 'HGZ-5T', '无锡市兰亭机械设备有限公司', NULL, NULL, '2024-08-08', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-05', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '无锡市兰亭机械设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899482513409, NULL, NULL, 'GPB2024NL002', '加工中心平口钳', '型号:HVL-160', '上海辁鹰精密机械有限公司', NULL, NULL, '2024-08-19', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海辁鹰精密机械有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899528650754, NULL, NULL, 'GPB2024NL003', '加工中心平口钳', '型号:HVL-160', '上海辁鹰精密机械有限公司', NULL, NULL, '2024-08-19', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海辁鹰精密机械有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899570593793, NULL, NULL, 'GPB2024NL004', '加工中心平口钳', '型号:HVL-160', '上海辁鹰精密机械有限公司', NULL, NULL, '2024-08-19', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '上海辁鹰精密机械有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899612536834, NULL, NULL, 'GPC2024NL042', 'CNC钻攻加工中心', 'HD-T850 M80B 20,000rpm 配置', '江苏厚道数控科技有限公司', NULL, NULL, '2024-08-14', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '江苏厚道数控科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899650285569, NULL, NULL, 'GPA2024NL017', '电子分析天平', '型号:LC-FA1204,品牌:力辰', '湖南力辰仪器科技有限公司', NULL, NULL, '2024-09-04', NULL, '成都办事处', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '湖南力辰仪器科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899696422914, NULL, NULL, 'GPC2024NA046', '高精微量转盘注塑机', 'TYU-400.2R.SF.J', '杭州大禹机械有限公司', NULL, NULL, '2024-08-19', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-09-24', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:00', NULL, '2025-02-14 09:54:00', NULL, '昆山大禹集成智能科技有限公司', NULL, NULL, NULL, NULL, '安徽采购使用,大禹转盘机');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899734171649, NULL, NULL, 'GPA2024NL018', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-08-27', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899776114689, NULL, NULL, 'GPA2024NL019', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-08-27', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899822252034, NULL, NULL, 'GPA2024NL020', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-08-27', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899868389378, NULL, NULL, 'GPA2024NL021', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-08-27', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899906138113, NULL, NULL, 'GPA2024NL022', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-10-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, '2024.09.25已领走,等二维码替换编号');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899948081154, NULL, NULL, 'GPA2024NL023', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-10-17', NULL, '???', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, '原陈爱明领走,故障退回,待领');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217899990024193, NULL, NULL, 'GPA2024NL024', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-10-17', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, '陈爱明2024.12.06已领走');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900036161538, NULL, NULL, 'GPA2024NL025', '高精度传感测试仪', 'ZTX-022-001', '上海百悦成电子科技有限公司', NULL, NULL, '2024-10-17', NULL, '???', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海百悦成电子科技有限公司', NULL, NULL, NULL, NULL, '待领走');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900078104577, NULL, NULL, 'GPA2024NL026', '高精度传感测试仪', 'ZTX-022-001', '???', NULL, NULL, NULL, NULL, '???', NULL, NULL, '待走验收单和二维码', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '???', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900115853313, NULL, NULL, 'GPA2024NL027', '高精度传感测试仪', 'ZTX-022-001', '???', NULL, NULL, NULL, NULL, '???', NULL, NULL, '待走验收单和二维码', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '???', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900157796353, NULL, NULL, 'GPA2024NL028', '高精度传感测试仪', 'ZTX-022-001', '???', NULL, NULL, NULL, NULL, '???', NULL, NULL, '待走验收单和二维码', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '???', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900195545089, NULL, NULL, 'GPA2024NL029', '高精度传感测试仪', 'ZTX-022-001', '???', NULL, NULL, NULL, NULL, '???', NULL, NULL, '待走验收单和二维码', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '???', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900233293826, NULL, NULL, 'GPA2024NL030', '高精度传感测试仪', 'ZTX-022-001', '???', NULL, NULL, NULL, NULL, '???', NULL, NULL, '待走验收单和二维码', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '???', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900275236866, NULL, NULL, 'GPA2024NL031', '高精度传感测试仪', 'ZTX-022-001', '???', NULL, NULL, NULL, NULL, '???', NULL, NULL, '待走验收单和二维码', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '???', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900317179905, NULL, NULL, 'GPA2024NL032', '高精度传感测试仪', 'ZTX-022-001', '???', NULL, NULL, NULL, NULL, '???', NULL, NULL, '待走验收单和二维码', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '???', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900363317250, NULL, NULL, 'GPA2024NL033', '高精度传感测试仪', 'ZTX-022-001', '???', NULL, NULL, NULL, NULL, '???', NULL, NULL, '待走验收单和二维码', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '???', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900405260290, NULL, NULL, 'GPD2024NL112', '测试平台:大理石', '大理石平台: 大理石1600*600*150mm 平整度0.01', '无锡佰斯特尔精密机械制造有限公司', NULL, NULL, '2024-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '无锡佰斯特尔精密机械制造有限公司', NULL, NULL, NULL, NULL, 'PDE标定用大理石平台用,此为单一大理石');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900451397634, NULL, NULL, 'GPD2024NL113', '测试平台:支撑柜体', '大理石平台:支架柜体: 1600*590*650mm(含福马轮', '上海皇闽铝业有限公司', NULL, NULL, '2024-08-29', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海皇闽铝业有限公司', NULL, NULL, NULL, NULL, 'PDE标定用大理石平台用,此为单大理石铝型材支持底座');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900497534978, NULL, NULL, 'GPD2024NL114', '高精度电动位移滑台', '三相步进电机UKSA200 控制器:MC6003P-2B', '北京卓立汉光仪器有限公司', NULL, NULL, '2024-08-30', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '北京卓立汉光仪器有限公司', NULL, NULL, NULL, NULL, 'PDE标定用大理石平台用,此为单一高精度滑台和MC6003主机控制器一套');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900539478018, NULL, NULL, 'GPA2024NL034', 'LVDT标定测试柜', 'LVDT标定测试柜800*600*1632mm 重型 承重150公斤', '上海蓄莹实业有限公司', NULL, NULL, '2024-08-26', NULL, '制造课', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海蓄莹实业有限公司', NULL, NULL, NULL, NULL, 'LVDT测试标定用,定制铝型材机柜');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900594003970, NULL, NULL, 'GPA2024NL035', '读数头+光栅尺', '1、读数头PTL-1-A-250G-26F-05BL-2M 2、光栅尺 GLA-1-A-', '长春禹衡光学有限公司', NULL, NULL, '2024-09-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '长春禹衡光学有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900631752706, NULL, NULL, 'GPC2024NA047', '标签打印机', 'GP-1134T', '杭州精睿电子商务有限公司', NULL, NULL, '2024-09-26', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '杭州精睿电子商务有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900682084354, NULL, NULL, 'GPC2024NA048', '气保焊机', 'NB-500E(配套5米枪、15米送丝机线)', '上海歙州实业发展有限公司', NULL, NULL, '2024-09-27', NULL, '安徽兰宝钣金', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海歙州实业发展有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900728221697, NULL, NULL, 'GPG2024NA083', '全自动空心线圈绕线整理摆盘自动化设备', '长1.55M*宽1.2M*1.8M', '苏州从正精密科技有限公司', NULL, NULL, '2024-08-13', NULL, '安徽兰宝传感', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-15', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '苏州从正精密科技有限公司', NULL, NULL, NULL, NULL, '安徽请购的自动化设备,用于8EA空心线圈自动化绕制下料摆盘使用。');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900770164738, NULL, NULL, 'GPC2024NL049', '激光调阻机', 'BNTZ-20XTL', '苏州佰诺斯智能科技有限公司', NULL, NULL, '2024-08-26', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '苏州佰诺斯智能科技有限公司', NULL, NULL, NULL, NULL, '9700自动化改激光调阻机使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900812107777, NULL, NULL, 'GPC2024NL050', '激光调阻机', 'BNTZ-20XTL', '苏州佰诺斯智能科技有限公司', NULL, NULL, '2024-08-26', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-18', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '苏州佰诺斯智能科技有限公司', NULL, NULL, NULL, NULL, '6M自动化改激光调阻机使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900858245121, NULL, NULL, 'GPA2024NL036', '光栅尺', '型号:ABA100-B-30C1', '无锡宁动光电科技有限公司', NULL, NULL, '2024-09-24', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '无锡宁动光电科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900895993857, NULL, NULL, 'GPA2024NL037', '光栅尺', '型号:ABA100-B-30C1', '无锡宁动光电科技有限公司', NULL, NULL, '2024-09-24', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '无锡宁动光电科技有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900933742593, NULL, NULL, 'GPA2024NL039', '不锈钢带绝对值光栅尺', 'QHJ-100型', '长春七海光电技术有限公司', NULL, NULL, '2024-09-24', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '长春七海光电技术有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217900975685633, NULL, NULL, NULL, 'LVDT测试治具', '直线电机平台 NPS-L-UB1-05C-03台湾 +配件', '海敏硕机械配件有限公司', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '海敏硕机械配件有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901017628674, NULL, NULL, 'GPC2024NL051', '附件袋包装机', '小型气动包装机搭配4头螺旋计数盘', '安溪轩藤机械设备有限公司', NULL, NULL, '2023-12-10', NULL, '生产制造部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '安溪轩藤机械设备有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901055377410, NULL, NULL, 'GPA2024NL038', '沙尘试验箱', 'JK-600-6X', '苏州江凯机械设备有限公司', NULL, NULL, '2024-10-10', NULL, '质量管理部', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '苏州江凯机械设备有限公司', NULL, NULL, NULL, NULL, 'DQM部,沙尘实验用,放3楼');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901097320449, NULL, NULL, 'GPA2024NH040', '便携式臭气浓度检测仪', 'POLFA,臭气强度检测量程:0-2000', '日本进口', NULL, NULL, '2023-08-07', NULL, '环保实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2024-10-30', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海积世实业发展有限公司', NULL, NULL, NULL, NULL, '环保研发部实验室使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901135069186, NULL, NULL, 'GPC2024NL052', '远方智能群脉冲设备', '远方EMS61000-4A', '杭州远方电磁兼容技术有限公司', NULL, NULL, '2024-09-30', NULL, 'EMC实验室', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海致广电子技术有限公司', NULL, NULL, NULL, NULL, '旧设备报废换新');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901177012226, NULL, NULL, 'GPA2024NL041', 'LVDT测试治具', '直线电机平台 NPS-L-UB1-05C-03台湾 +配件', '台湾', NULL, NULL, '2024-09-30', NULL, '研发中心', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海敏硕机械配件有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901218955266, NULL, NULL, 'GPC2024NA053', '小型冲压机', '上海玉豹 1.5吨微电脑计数/可设置自动冲压', '台州玉豹机电有限公司', NULL, NULL, '2024-10-14', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '台州玉豹机电有限公司', NULL, NULL, NULL, NULL, NULL);
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901260898305, NULL, NULL, 'GPG2024NA084', '工业大电扇', 'HVLS-4BAA73', '开勒环境科技(上海)股份有限公司', NULL, NULL, '2024-08-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '开勒环境科技(上海)股份有限公司', NULL, NULL, NULL, NULL, '钣金车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901307035649, NULL, NULL, 'GPG2024NA085', '工业大电扇', 'HVLS-4BAA73', '开勒环境科技(上海)股份有限公司', NULL, NULL, '2024-08-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '开勒环境科技(上海)股份有限公司', NULL, NULL, NULL, NULL, '钣金车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901348978690, NULL, NULL, 'GPG2024NA086', '工业大电扇', 'HVLS-4BAA73', '开勒环境科技(上海)股份有限公司', NULL, NULL, '2024-08-10', NULL, '安徽兰宝', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-11', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '开勒环境科技(上海)股份有限公司', NULL, NULL, NULL, NULL, '钣金车间使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901390921730, NULL, NULL, 'GPC2024NL054', '强制对流型烘干机', '品牌Binder,型号FED115 宾德230V', '上海始恒仪器设备有限公司', NULL, NULL, '2024-11-15', NULL, '成都办事处', NULL, NULL, NULL, NULL, NULL, NULL, '2024-11-28', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '上海始恒仪器设备有限公司', NULL, NULL, NULL, NULL, '研发中心请购,成都办事处使用');
| INSERT INTO `eims_equ` (`equ_id`, `equ_code`, `equ_type_id`, `asset_no`, `equ_name`, `model_no`, `made_in`, `rated_power`, `plate_info`, `purchase_date`, `status`, `location`, `dept_used`, `resp_person`, `contact_phone`, `deploy_date`, `trial_date`, `plan_accept_date`, `actual_accept_date`, `import_status`, `inventory_flag`, `inventory_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `seller`, `unit`, `handle_user`, `purchase_user`, `attach_id`, `profile`) VALUES (1890217901449641985, NULL, NULL, '生产制造部', 'GPA2023NL070-077', '高精度传感器测试仪', 'ZTX-022-001', NULL, NULL, NULL, NULL, '甘海宾', NULL, NULL, NULL, NULL, NULL, NULL, '2023-11-01', '0', NULL, NULL, NULL, NULL, 1, '2025-02-14 09:54:01', NULL, '2025-02-14 09:54:01', NULL, '检测设备(帐内)(传感)', NULL, NULL, NULL, NULL, NULL);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for eims_equ_statu
| -- ----------------------------
| DROP TABLE IF EXISTS `eims_equ_statu`;
| CREATE TABLE `eims_equ_statu` (
| `equ_statu_id` bigint NOT NULL,
| `equ_id` bigint NOT NULL COMMENT '设备id',
| `before_change` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '变更前状态',
| `after_change` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '变更后状态',
| `change_date` datetime DEFAULT NULL COMMENT '变更日期',
| `change_user` bigint DEFAULT NULL COMMENT '变更人',
| `user_dept` bigint DEFAULT NULL COMMENT '变更人部门',
| `change_desc` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '变更描述',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '描述',
| PRIMARY KEY (`equ_statu_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
| -- ----------------------------
| -- Records of eims_equ_statu
| -- ----------------------------
| BEGIN;
| INSERT INTO `eims_equ_statu` (`equ_statu_id`, `equ_id`, `before_change`, `after_change`, `change_date`, `change_user`, `user_dept`, `change_desc`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892023859743035394, 1890217827130769409, '3', '1', '2025-02-19 09:30:04', 1, 100, 'df', 103, 1, '2025-02-19 09:30:15', 1, '2025-02-19 09:30:23', NULL);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for eims_equ_trial
| -- ----------------------------
| DROP TABLE IF EXISTS `eims_equ_trial`;
| CREATE TABLE `eims_equ_trial` (
| `trial_id` bigint NOT NULL COMMENT '试用记录id',
| `equ_id` bigint NOT NULL COMMENT '设备id',
| `trial_num` int DEFAULT NULL COMMENT '试产数量',
| `trial_date` date DEFAULT NULL COMMENT '试产日期',
| `pro_good_num` int DEFAULT NULL COMMENT '良品数量',
| `pro_good_rate` double DEFAULT NULL COMMENT '良品率',
| `operator_dept` bigint DEFAULT NULL COMMENT '操作人部门',
| `operator_id` bigint DEFAULT NULL COMMENT '操作人(id)',
| `start_time` time DEFAULT NULL COMMENT '开始时间',
| `end_time` time DEFAULT NULL COMMENT '结束时间',
| `run_time` time DEFAULT NULL COMMENT '运行时长',
| `stop_time` time DEFAULT NULL COMMENT '停机时长',
| `plan_run_time` time DEFAULT NULL COMMENT '计划运行时长',
| `debug_history` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '调试履历',
| `oee` double DEFAULT NULL COMMENT '设备综合效率',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
| PRIMARY KEY (`trial_id`) USING BTREE
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
| -- ----------------------------
| -- Records of eims_equ_trial
| -- ----------------------------
| BEGIN;
| INSERT INTO `eims_equ_trial` (`trial_id`, `equ_id`, `trial_num`, `trial_date`, `pro_good_num`, `pro_good_rate`, `operator_dept`, `operator_id`, `start_time`, `end_time`, `run_time`, `stop_time`, `plan_run_time`, `debug_history`, `oee`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892016155767083009, 1890217827130769409, 1, '2025-02-19', 1, 1, 100, 1889581563890200577, '08:58:58', '08:58:59', '08:59:04', '08:59:06', '08:59:01', 'ryy', NULL, 103, 1, '2025-02-19 08:59:38', 1, '2025-02-19 08:59:38', NULL);
| INSERT INTO `eims_equ_trial` (`trial_id`, `equ_id`, `trial_num`, `trial_date`, `pro_good_num`, `pro_good_rate`, `operator_dept`, `operator_id`, `start_time`, `end_time`, `run_time`, `stop_time`, `plan_run_time`, `debug_history`, `oee`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892021734799577089, 1890217827130769409, NULL, '2025-02-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 103, 1, '2025-02-19 09:21:48', 1, '2025-02-19 09:21:48', NULL);
| INSERT INTO `eims_equ_trial` (`trial_id`, `equ_id`, `trial_num`, `trial_date`, `pro_good_num`, `pro_good_rate`, `operator_dept`, `operator_id`, `start_time`, `end_time`, `run_time`, `stop_time`, `plan_run_time`, `debug_history`, `oee`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892021858305052674, 1890217827189489665, NULL, '2025-02-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 103, 1, '2025-02-19 09:22:18', 1, '2025-02-19 09:22:18', NULL);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for eims_equ_type
| -- ----------------------------
| DROP TABLE IF EXISTS `eims_equ_type`;
| CREATE TABLE `eims_equ_type` (
| `equ_type_id` bigint NOT NULL,
| `type_name` varchar(30) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `type_code` varchar(10) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `parent_id` bigint DEFAULT NULL,
| `order_num` int DEFAULT '0' COMMENT '显示顺序',
| `menu_type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '菜单类型(M目录 C菜单 F按钮)',
| `icon` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '#' COMMENT '菜单图标',
| `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '菜单状态(0正常 1停用)',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '备注',
| PRIMARY KEY (`equ_type_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
| -- ----------------------------
| -- Records of eims_equ_type
| -- ----------------------------
| BEGIN;
| INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '基本设备', '10000', NULL, 1, 'M', '#', '0', NULL, NULL, NULL, NULL, NULL, '');
| INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '生产设备', '20000', NULL, NULL, 'M', '#', '0', NULL, NULL, NULL, NULL, NULL, '');
| INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '压力设备', '30000', NULL, NULL, 'M', '#', '0', NULL, NULL, NULL, NULL, NULL, '');
| INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (11, '基本子类1', '1000000', 1, 1, 'C', '#', '0', NULL, NULL, NULL, NULL, NULL, '');
| INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (21, '锻压设备', '211', 2, 1, 'c', '#', '0', NULL, NULL, NULL, NULL, NULL, '');
| INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (22, '铸造设备', '212', 2, 1, 'c', '#', '0', NULL, NULL, NULL, NULL, NULL, '');
| INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (31, '压力容器', '311', 3, 1, 'c', '#', '0', NULL, NULL, NULL, NULL, NULL, '');
| INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (32, '反应器', '312', 3, 2, 'c', '#', '0', NULL, NULL, NULL, NULL, NULL, '');
| INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1876156501861937153, '测试1', '11', 0, 1, 'M', '#', '1', 103, 1, '2025-01-06 14:39:02', 1, '2025-01-06 14:40:19', '');
| INSERT INTO `eims_equ_type` (`equ_type_id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1876156551069511682, '测试子类1', '12', 1876156501861937153, 2, 'M', '#', '1', 103, 1, '2025-01-06 14:39:14', 1, '2025-01-06 17:54:31', '');
| COMMIT;
|
| -- ----------------------------
| -- Table structure for eims_fixture
| -- ----------------------------
| DROP TABLE IF EXISTS `eims_fixture`;
| CREATE TABLE `eims_fixture` (
| `id` bigint NOT NULL,
| `fixture_code` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '治具编码',
| `fixture_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '治具名称',
| `fixture_type` bigint DEFAULT NULL COMMENT '治具(工具)类型',
| `fixture_desc` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '治具描述',
| `borrow_dept` bigint DEFAULT NULL COMMENT '借用部门',
| `borrow_user` bigint DEFAULT NULL COMMENT '借用人',
| `borrow_status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '借出状态(字典)',
| `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '状态(字典)',
| `asset_no` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '资产编号',
| `model_no` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '型号',
| `spec_no` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '规格',
| `made_in` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '制造商',
| `purchase_date` date DEFAULT NULL COMMENT '采购日期',
| `deploy_date` date DEFAULT NULL COMMENT '使用日期',
| `service_life` int DEFAULT NULL COMMENT '使用年限',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
| `cur_borrow_id` bigint DEFAULT NULL COMMENT '当前借用记录id',
| PRIMARY KEY (`id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
| -- ----------------------------
| -- Records of eims_fixture
| -- ----------------------------
| BEGIN;
| INSERT INTO `eims_fixture` (`id`, `fixture_code`, `fixture_name`, `fixture_type`, `fixture_desc`, `borrow_dept`, `borrow_user`, `borrow_status`, `status`, `asset_no`, `model_no`, `spec_no`, `made_in`, `purchase_date`, `deploy_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `cur_borrow_id`) VALUES (1891360483990941697, '123456', '手动扳手2', 1891349685461688322, NULL, 100, 1889581563890200577, '0', '0', '123456', '123', '12', '12', '2025-02-17', '2025-02-17', 6, 103, 1, '2025-02-17 13:34:14', 1889581563890200577, '2025-02-20 13:45:19', NULL, 1892104974138871809);
| INSERT INTO `eims_fixture` (`id`, `fixture_code`, `fixture_name`, `fixture_type`, `fixture_desc`, `borrow_dept`, `borrow_user`, `borrow_status`, `status`, `asset_no`, `model_no`, `spec_no`, `made_in`, `purchase_date`, `deploy_date`, `service_life`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`, `cur_borrow_id`) VALUES (1891365808617848833, 'qwertyu', '电动扳手', 1891349784564703233, NULL, 100, 1889581563890200577, '1', '0', '123456', NULL, NULL, NULL, '2025-02-17', '2025-02-17', NULL, 103, 1, '2025-02-01 13:55:23', 1889581563890200577, '2025-02-20 13:45:44', NULL, 1892450543547351042);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for eims_fixture_borrow
| -- ----------------------------
| DROP TABLE IF EXISTS `eims_fixture_borrow`;
| CREATE TABLE `eims_fixture_borrow` (
| `id` bigint NOT NULL,
| `fixture_id` bigint NOT NULL COMMENT '借用工具id',
| `fixture_name` varchar(50) COLLATE utf8mb4_general_ci NOT NULL COMMENT '借用工具名称',
| `borrow_dept` bigint DEFAULT NULL COMMENT '借用部门',
| `borrow_user` bigint DEFAULT NULL COMMENT '借用人',
| `agent_user` bigint DEFAULT NULL COMMENT '经办人',
| `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '借用记录状态(字典)',
| `borrow_time` datetime DEFAULT NULL COMMENT '借用时间',
| `plan_return_time` datetime DEFAULT NULL COMMENT '预计归还时间',
| `return_time` datetime DEFAULT NULL COMMENT '归还时间',
| `borrow_reason` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '借用理由',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
| PRIMARY KEY (`id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
| -- ----------------------------
| -- Records of eims_fixture_borrow
| -- ----------------------------
| BEGIN;
| INSERT INTO `eims_fixture_borrow` (`id`, `fixture_id`, `fixture_name`, `borrow_dept`, `borrow_user`, `agent_user`, `status`, `borrow_time`, `plan_return_time`, `return_time`, `borrow_reason`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892101960258818049, 1891360483990941697, '手动扳手2', 103, 1, 1889581665270722561, '1', '2025-02-19 14:40:28', '2025-02-19 14:40:32', '2025-02-19 14:40:34', 'fghjk', 103, 1, '2025-02-19 14:40:36', 1, '2025-02-19 14:41:25', NULL);
| INSERT INTO `eims_fixture_borrow` (`id`, `fixture_id`, `fixture_name`, `borrow_dept`, `borrow_user`, `agent_user`, `status`, `borrow_time`, `plan_return_time`, `return_time`, `borrow_reason`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892103064619061250, 1891360483990941697, '手动扳手2', 103, 1, 1889581724095836162, '1', '2025-02-19 14:44:49', '2025-02-19 14:44:57', '2025-02-19 14:45:22', 'fg345678', 103, 1, '2025-02-19 14:44:59', 1, '2025-02-19 14:45:24', NULL);
| INSERT INTO `eims_fixture_borrow` (`id`, `fixture_id`, `fixture_name`, `borrow_dept`, `borrow_user`, `agent_user`, `status`, `borrow_time`, `plan_return_time`, `return_time`, `borrow_reason`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892104974138871809, 1891360483990941697, '手动扳手2', 100, 1889581563890200577, 1889581665270722561, '1', '2025-02-19 14:52:26', '2025-02-19 14:52:31', '2025-02-20 13:45:15', '法国会尽快', 100, 1889581563890200577, '2025-02-19 14:52:34', 1889581563890200577, '2025-02-20 13:45:19', NULL);
| INSERT INTO `eims_fixture_borrow` (`id`, `fixture_id`, `fixture_name`, `borrow_dept`, `borrow_user`, `agent_user`, `status`, `borrow_time`, `plan_return_time`, `return_time`, `borrow_reason`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892108238951550978, 1891365808617848833, '电动扳手', 103, 1, 1889581724095836162, '1', '2025-02-19 15:05:27', '2025-02-19 15:05:31', '2025-02-19 15:09:08', 'iufghj', 103, 1, '2025-02-19 15:05:32', 1, '2025-02-19 15:09:26', NULL);
| INSERT INTO `eims_fixture_borrow` (`id`, `fixture_id`, `fixture_name`, `borrow_dept`, `borrow_user`, `agent_user`, `status`, `borrow_time`, `plan_return_time`, `return_time`, `borrow_reason`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892450543547351042, 1891365808617848833, '电动扳手', 100, 1889581563890200577, 1889581724095836162, '0', '2025-02-20 13:45:36', '2025-02-21 13:45:40', NULL, '规划局看了看巨化股份代发给', 100, 1889581563890200577, '2025-02-20 13:45:44', 1889581563890200577, '2025-02-20 13:45:44', NULL);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for eims_fixture_type
| -- ----------------------------
| DROP TABLE IF EXISTS `eims_fixture_type`;
| CREATE TABLE `eims_fixture_type` (
| `id` bigint NOT NULL,
| `type_name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
| `type_code` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
| `parent_id` bigint DEFAULT NULL,
| `order_num` int DEFAULT '0' COMMENT '显示顺序',
| `menu_type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '菜单类型(M目录 C菜单 F按钮)',
| `icon` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '#' COMMENT '菜单图标',
| `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '菜单状态(0正常 1停用)',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '备注',
| PRIMARY KEY (`id`) USING BTREE
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
| -- ----------------------------
| -- Records of eims_fixture_type
| -- ----------------------------
| BEGIN;
| INSERT INTO `eims_fixture_type` (`id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891346631324704769, '工具', 'tool', 0, 1, 'M', '#', '0', 103, 1, '2025-02-17 12:39:11', 1, '2025-02-17 12:39:11', '');
| INSERT INTO `eims_fixture_type` (`id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891346744369586178, '治具', 'jig', 0, 2, 'M', '#', '0', 103, 1, '2025-02-17 12:39:38', 1, '2025-02-17 12:58:24', '');
| INSERT INTO `eims_fixture_type` (`id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891348168285462529, '定位治具', 'dw', 1891346744369586178, 1, 'C', '#', '0', 103, 1, '2025-02-17 12:45:18', 1, '2025-02-17 12:46:22', '');
| INSERT INTO `eims_fixture_type` (`id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891348349345177601, '焊接治具', 'hj', 1891346744369586178, 2, 'C', '#', '0', 103, 1, '2025-02-17 12:46:01', 1, '2025-02-17 12:47:10', '');
| INSERT INTO `eims_fixture_type` (`id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891348417930436609, '测试治具', 'cs', 1891346744369586178, 3, 'C', '#', '0', 103, 1, '2025-02-17 12:46:17', 1, '2025-02-17 12:49:46', '');
| INSERT INTO `eims_fixture_type` (`id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891348560738099201, '校准治具', 'jz', 1891346744369586178, 4, 'C', '#', '0', 103, 1, '2025-02-17 12:46:51', 1, '2025-02-17 12:49:54', '');
| INSERT INTO `eims_fixture_type` (`id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891349577999425537, '组装治具', 'zz', 1891346744369586178, 5, 'C', '#', '0', 103, 1, '2025-02-17 12:50:54', 1, '2025-02-17 12:50:54', '');
| INSERT INTO `eims_fixture_type` (`id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891349685461688322, '手动工具', 'sd', 1891346631324704769, 1, 'M', '#', '0', 103, 1, '2025-02-17 12:51:19', 1, '2025-02-17 12:51:19', '');
| INSERT INTO `eims_fixture_type` (`id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891349784564703233, '电动工具', 'dd', 1891346631324704769, 2, 'M', '#', '0', 103, 1, '2025-02-17 12:51:43', 1, '2025-02-17 12:51:43', '');
| INSERT INTO `eims_fixture_type` (`id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891349987325747202, '检测工具', 'jc', 1891346631324704769, 3, 'M', '#', '0', 103, 1, '2025-02-17 12:52:31', 1, '2025-02-17 12:52:31', '');
| INSERT INTO `eims_fixture_type` (`id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891350059899789314, '专用工具', 'zy', 1891346631324704769, 4, 'M', '#', '0', 103, 1, '2025-02-17 12:52:49', 1, '2025-02-17 12:53:01', '');
| INSERT INTO `eims_fixture_type` (`id`, `type_name`, `type_code`, `parent_id`, `order_num`, `menu_type`, `icon`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891350204989153281, '清洁工具', 'qj', 1891346631324704769, 5, 'M', '#', '0', 103, 1, '2025-02-17 12:53:23', 1, '2025-02-17 12:53:23', '');
| COMMIT;
|
| -- ----------------------------
| -- Table structure for eims_inventory
| -- ----------------------------
| DROP TABLE IF EXISTS `eims_inventory`;
| CREATE TABLE `eims_inventory` (
| `inventory_id` bigint NOT NULL COMMENT '盘点id',
| `inventory_code` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '盘点单号',
| `inventory_name` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '盘点名称',
| `equ_types` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '盘点范围-设备类型(设备类型id)',
| `equ_status` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '盘点范围-设备状态(设备状态字典)',
| `user_dept` bigint DEFAULT NULL COMMENT '用户部门',
| `inventory_user` bigint DEFAULT NULL COMMENT '盘点人',
| `start_date` date DEFAULT NULL COMMENT '开始日期',
| `end_date` date DEFAULT NULL COMMENT '结束日期',
| `status` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '盘点状态',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '备注',
| PRIMARY KEY (`inventory_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
| -- ----------------------------
| -- Records of eims_inventory
| -- ----------------------------
| BEGIN;
| INSERT INTO `eims_inventory` (`inventory_id`, `inventory_code`, `inventory_name`, `equ_types`, `equ_status`, `user_dept`, `inventory_user`, `start_date`, `end_date`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1887748053364764673, 'PD11111', '盘点1', '1,11,2,21,22,3,31,32,1876156501861937153,1876156551069511682', '0', 100, 1, '2025-02-07', '2025-02-07', '0', 103, 1, '2025-02-07 14:19:43', 1, '2025-02-10 10:20:44', '');
| INSERT INTO `eims_inventory` (`inventory_id`, `inventory_code`, `inventory_name`, `equ_types`, `equ_status`, `user_dept`, `inventory_user`, `start_date`, `end_date`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890218318216658946, 'dfghjk', 'jfgbj', '1,11', '0,1,2,3,4,5', 100, 1889581724095836162, '2025-02-14', '2025-02-14', '0', 103, 1, '2025-02-14 09:55:40', 1, '2025-02-14 09:55:40', '');
| COMMIT;
|
| -- ----------------------------
| -- Table structure for eims_inventory_detail
| -- ----------------------------
| DROP TABLE IF EXISTS `eims_inventory_detail`;
| CREATE TABLE `eims_inventory_detail` (
| `id` bigint NOT NULL,
| `inventory_id` bigint NOT NULL COMMENT '盘点id',
| `equ_id` bigint NOT NULL COMMENT '设备id',
| `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '盘点结果',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
| PRIMARY KEY (`id`),
| KEY `del_detail` (`inventory_id`),
| CONSTRAINT `del_detail` FOREIGN KEY (`inventory_id`) REFERENCES `eims_inventory` (`inventory_id`) ON DELETE CASCADE
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
| -- ----------------------------
| -- Records of eims_inventory_detail
| -- ----------------------------
| BEGIN;
| INSERT INTO `eims_inventory_detail` (`id`, `inventory_id`, `equ_id`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890218318275379202, 1890218318216658946, 1890217827130769409, '0', 103, 1, '2025-02-14 09:53:43', 1, '2025-02-14 10:05:05', NULL);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for eims_repair_record
| -- ----------------------------
| DROP TABLE IF EXISTS `eims_repair_record`;
| CREATE TABLE `eims_repair_record` (
| `id` bigint NOT NULL,
| `req_id` bigint DEFAULT NULL COMMENT '报修单id',
| PRIMARY KEY (`id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
| -- ----------------------------
| -- Records of eims_repair_record
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for eims_repair_req
| -- ----------------------------
| DROP TABLE IF EXISTS `eims_repair_req`;
| CREATE TABLE `eims_repair_req` (
| `id` bigint NOT NULL COMMENT '报修id',
| `code` varchar(20) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '报修单号',
| `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '报修状态',
| `occ_time` datetime DEFAULT NULL COMMENT '发生时间',
| `req_time` datetime DEFAULT NULL COMMENT '报修时间',
| `req_dept` bigint DEFAULT NULL COMMENT '报修人部门',
| `req_user` bigint DEFAULT NULL COMMENT '报修人',
| `req_desc` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '报修描述',
| `urgency_level` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '紧急程度',
| `fault_picture` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '故障图片',
| `req_type` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '报修类型',
| `equ_id` bigint DEFAULT NULL COMMENT '设备id',
| `fixture_id` bigint DEFAULT NULL COMMENT '工具id',
| `repair_id` bigint DEFAULT NULL COMMENT '维修单id',
| `repair_dept` bigint DEFAULT NULL COMMENT '维修人部门',
| `repair_user` bigint DEFAULT NULL COMMENT '维修人',
| `fault_type` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '故障类别',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
| PRIMARY KEY (`id`) USING BTREE,
| UNIQUE KEY `repair_id` (`repair_id`),
| UNIQUE KEY `code` (`code`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
| -- ----------------------------
| -- Records of eims_repair_req
| -- ----------------------------
| BEGIN;
| INSERT INTO `eims_repair_req` (`id`, `code`, `status`, `occ_time`, `req_time`, `req_dept`, `req_user`, `req_desc`, `urgency_level`, `fault_picture`, `req_type`, `equ_id`, `fixture_id`, `repair_id`, `repair_dept`, `repair_user`, `fault_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889193482098917378, 'WXD202502110001', '1', '2025-02-11 14:03:06', '2025-02-11 14:03:04', 100, 1, '急不急', '2', NULL, '3', NULL, NULL, NULL, NULL, NULL, '2', 103, 1, '2025-02-11 14:03:20', 1, '2025-02-11 14:03:20', NULL);
| INSERT INTO `eims_repair_req` (`id`, `code`, `status`, `occ_time`, `req_time`, `req_dept`, `req_user`, `req_desc`, `urgency_level`, `fault_picture`, `req_type`, `equ_id`, `fixture_id`, `repair_id`, `repair_dept`, `repair_user`, `fault_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889199026704601089, 'WXD202502110002', '0', '2025-02-11 14:11:51', '2025-02-11 14:11:48', 100, 1, '1212', '1', NULL, '2', NULL, NULL, NULL, NULL, NULL, '2', 103, 1, '2025-02-11 14:25:22', 1, '2025-02-11 14:25:22', NULL);
| INSERT INTO `eims_repair_req` (`id`, `code`, `status`, `occ_time`, `req_time`, `req_dept`, `req_user`, `req_desc`, `urgency_level`, `fault_picture`, `req_type`, `equ_id`, `fixture_id`, `repair_id`, `repair_dept`, `repair_user`, `fault_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889506260404666369, 'BXD202502120002', '0', '2025-02-12 10:46:03', '2025-02-12 10:46:00', 100, 1, '112', '1', NULL, '1', 1000, NULL, NULL, NULL, NULL, '1', 103, 1, '2025-02-12 10:46:12', 1, '2025-02-12 10:46:12', NULL);
| INSERT INTO `eims_repair_req` (`id`, `code`, `status`, `occ_time`, `req_time`, `req_dept`, `req_user`, `req_desc`, `urgency_level`, `fault_picture`, `req_type`, `equ_id`, `fixture_id`, `repair_id`, `repair_dept`, `repair_user`, `fault_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889510345426092033, 'BXD202502120003', '1', '2025-02-12 11:02:07', '2025-02-12 11:02:05', 100, 1, '12', '1', NULL, '1', 1876204236438884354, NULL, NULL, NULL, NULL, '2', 103, 1, '2025-02-12 11:02:26', 1, '2025-02-12 11:02:26', NULL);
| INSERT INTO `eims_repair_req` (`id`, `code`, `status`, `occ_time`, `req_time`, `req_dept`, `req_user`, `req_desc`, `urgency_level`, `fault_picture`, `req_type`, `equ_id`, `fixture_id`, `repair_id`, `repair_dept`, `repair_user`, `fault_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889510920993652738, 'BXD202502120004', '0', '2025-02-12 11:04:31', '2025-02-12 11:04:29', 100, 1, '122', '1', NULL, '2', NULL, NULL, NULL, NULL, NULL, '3', 103, 1, '2025-02-12 11:04:44', 1, '2025-02-12 11:04:44', NULL);
| INSERT INTO `eims_repair_req` (`id`, `code`, `status`, `occ_time`, `req_time`, `req_dept`, `req_user`, `req_desc`, `urgency_level`, `fault_picture`, `req_type`, `equ_id`, `fixture_id`, `repair_id`, `repair_dept`, `repair_user`, `fault_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889511033325502466, 'BXD202502120005', '0', '2025-02-12 11:05:00', '2025-02-12 11:04:58', 100, 1, '122', '1', NULL, '1', 1878988394319949826, NULL, NULL, NULL, NULL, '1', 103, 1, '2025-02-12 11:05:10', 1, '2025-02-12 11:05:10', NULL);
| INSERT INTO `eims_repair_req` (`id`, `code`, `status`, `occ_time`, `req_time`, `req_dept`, `req_user`, `req_desc`, `urgency_level`, `fault_picture`, `req_type`, `equ_id`, `fixture_id`, `repair_id`, `repair_dept`, `repair_user`, `fault_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889595038951645185, 'BXD202502120006', '0', '2025-02-12 16:38:45', '2025-02-12 16:38:43', 100, 1889581563890200577, '法国会尽快', '1', NULL, '1', 1000, NULL, NULL, NULL, NULL, '1', 100, 1889581563890200577, '2025-02-12 16:38:59', 1889581563890200577, '2025-02-12 16:38:59', NULL);
| INSERT INTO `eims_repair_req` (`id`, `code`, `status`, `occ_time`, `req_time`, `req_dept`, `req_user`, `req_desc`, `urgency_level`, `fault_picture`, `req_type`, `equ_id`, `fixture_id`, `repair_id`, `repair_dept`, `repair_user`, `fault_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889595916202909698, 'BXD202502120007', '0', '2025-02-12 16:42:16', '2025-02-12 16:42:14', 100, 1889581563890200577, '1是的是的', '1', NULL, '2', NULL, NULL, NULL, NULL, NULL, '1', 100, 1889581563890200577, '2025-02-12 16:42:28', 1889581563890200577, '2025-02-12 16:42:28', NULL);
| INSERT INTO `eims_repair_req` (`id`, `code`, `status`, `occ_time`, `req_time`, `req_dept`, `req_user`, `req_desc`, `urgency_level`, `fault_picture`, `req_type`, `equ_id`, `fixture_id`, `repair_id`, `repair_dept`, `repair_user`, `fault_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889596045999841281, 'BXD202502120008', '1', '2025-02-12 16:42:46', '2025-02-12 16:42:44', 100, 1889581563890200577, '1规划局快乐客家话', '1', NULL, '1', 1876204236438884354, NULL, NULL, NULL, NULL, '1', 100, 1889581563890200577, '2025-02-12 16:42:59', 1889581563890200577, '2025-02-12 16:42:59', NULL);
| INSERT INTO `eims_repair_req` (`id`, `code`, `status`, `occ_time`, `req_time`, `req_dept`, `req_user`, `req_desc`, `urgency_level`, `fault_picture`, `req_type`, `equ_id`, `fixture_id`, `repair_id`, `repair_dept`, `repair_user`, `fault_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889944971382734849, 'BXD202502130001', '0', '2025-02-13 15:49:15', '2025-02-13 15:49:13', 100, 1889581563890200577, 'fghjkl', '1', NULL, '1', 1889937933705527297, NULL, NULL, NULL, NULL, '1', 103, 1, '2025-02-13 15:49:29', 1, '2025-02-13 15:49:29', NULL);
| INSERT INTO `eims_repair_req` (`id`, `code`, `status`, `occ_time`, `req_time`, `req_dept`, `req_user`, `req_desc`, `urgency_level`, `fault_picture`, `req_type`, `equ_id`, `fixture_id`, `repair_id`, `repair_dept`, `repair_user`, `fault_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891772592350588929, 'BXD202502180001', '0', '2025-02-18 16:51:35', '2025-02-18 16:51:32', 103, 1891772104536256514, '发热管会尽快', '1', NULL, '1', 1890217827130769409, NULL, NULL, NULL, NULL, '1', 103, 1, '2025-02-18 16:51:48', 1, '2025-02-18 16:51:48', NULL);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for FLW_CHANNEL_DEFINITION
| -- ----------------------------
| DROP TABLE IF EXISTS `FLW_CHANNEL_DEFINITION`;
| CREATE TABLE `FLW_CHANNEL_DEFINITION` (
| `ID_` varchar(255) COLLATE utf8mb4_general_ci NOT NULL,
| `NAME_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `VERSION_` int DEFAULT NULL,
| `KEY_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `CATEGORY_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `DEPLOYMENT_ID_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `CREATE_TIME_` datetime(3) DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `RESOURCE_NAME_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `DESCRIPTION_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `TYPE_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `IMPLEMENTATION_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| PRIMARY KEY (`ID_`),
| UNIQUE KEY `ACT_IDX_CHANNEL_DEF_UNIQ` (`KEY_`,`VERSION_`,`TENANT_ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
| -- ----------------------------
| -- Records of FLW_CHANNEL_DEFINITION
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for flw_ev_databasechangelog
| -- ----------------------------
| DROP TABLE IF EXISTS `flw_ev_databasechangelog`;
| CREATE TABLE `flw_ev_databasechangelog` (
| `ID` varchar(255) COLLATE utf8mb4_general_ci NOT NULL,
| `AUTHOR` varchar(255) COLLATE utf8mb4_general_ci NOT NULL,
| `FILENAME` varchar(255) COLLATE utf8mb4_general_ci NOT NULL,
| `DATEEXECUTED` datetime NOT NULL,
| `ORDEREXECUTED` int NOT NULL,
| `EXECTYPE` varchar(10) COLLATE utf8mb4_general_ci NOT NULL,
| `MD5SUM` varchar(35) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `DESCRIPTION` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `COMMENTS` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `TAG` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `LIQUIBASE` varchar(20) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `CONTEXTS` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `LABELS` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `DEPLOYMENT_ID` varchar(10) COLLATE utf8mb4_general_ci DEFAULT NULL
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
| -- ----------------------------
| -- Records of flw_ev_databasechangelog
| -- ----------------------------
| BEGIN;
| INSERT INTO `flw_ev_databasechangelog` (`ID`, `AUTHOR`, `FILENAME`, `DATEEXECUTED`, `ORDEREXECUTED`, `EXECTYPE`, `MD5SUM`, `DESCRIPTION`, `COMMENTS`, `TAG`, `LIQUIBASE`, `CONTEXTS`, `LABELS`, `DEPLOYMENT_ID`) VALUES ('1', 'flowable', 'org/flowable/eventregistry/db/liquibase/flowable-eventregistry-db-changelog.xml', '2024-12-24 18:01:29', 1, 'EXECUTED', '9:63268f536c469325acef35970312551b', 'createTable tableName=FLW_EVENT_DEPLOYMENT; createTable tableName=FLW_EVENT_RESOURCE; createTable tableName=FLW_EVENT_DEFINITION; createIndex indexName=ACT_IDX_EVENT_DEF_UNIQ, tableName=FLW_EVENT_DEFINITION; createTable tableName=FLW_CHANNEL_DEFIN...', '', NULL, '4.24.0', NULL, NULL, '5034489048');
| INSERT INTO `flw_ev_databasechangelog` (`ID`, `AUTHOR`, `FILENAME`, `DATEEXECUTED`, `ORDEREXECUTED`, `EXECTYPE`, `MD5SUM`, `DESCRIPTION`, `COMMENTS`, `TAG`, `LIQUIBASE`, `CONTEXTS`, `LABELS`, `DEPLOYMENT_ID`) VALUES ('2', 'flowable', 'org/flowable/eventregistry/db/liquibase/flowable-eventregistry-db-changelog.xml', '2024-12-24 18:01:29', 2, 'EXECUTED', '9:dcb58b7dfd6dbda66939123a96985536', 'addColumn tableName=FLW_CHANNEL_DEFINITION; addColumn tableName=FLW_CHANNEL_DEFINITION', '', NULL, '4.24.0', NULL, NULL, '5034489048');
| INSERT INTO `flw_ev_databasechangelog` (`ID`, `AUTHOR`, `FILENAME`, `DATEEXECUTED`, `ORDEREXECUTED`, `EXECTYPE`, `MD5SUM`, `DESCRIPTION`, `COMMENTS`, `TAG`, `LIQUIBASE`, `CONTEXTS`, `LABELS`, `DEPLOYMENT_ID`) VALUES ('3', 'flowable', 'org/flowable/eventregistry/db/liquibase/flowable-eventregistry-db-changelog.xml', '2024-12-24 18:01:29', 3, 'EXECUTED', '9:d0c05678d57af23ad93699991e3bf4f6', 'customChange', '', NULL, '4.24.0', NULL, NULL, '5034489048');
| COMMIT;
|
| -- ----------------------------
| -- Table structure for flw_ev_databasechangeloglock
| -- ----------------------------
| DROP TABLE IF EXISTS `flw_ev_databasechangeloglock`;
| CREATE TABLE `flw_ev_databasechangeloglock` (
| `ID` int NOT NULL,
| `LOCKED` tinyint(1) NOT NULL,
| `LOCKGRANTED` datetime DEFAULT NULL,
| `LOCKEDBY` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| PRIMARY KEY (`ID`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
| -- ----------------------------
| -- Records of flw_ev_databasechangeloglock
| -- ----------------------------
| BEGIN;
| INSERT INTO `flw_ev_databasechangeloglock` (`ID`, `LOCKED`, `LOCKGRANTED`, `LOCKEDBY`) VALUES (1, 0, NULL, NULL);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for FLW_EVENT_DEFINITION
| -- ----------------------------
| DROP TABLE IF EXISTS `FLW_EVENT_DEFINITION`;
| CREATE TABLE `FLW_EVENT_DEFINITION` (
| `ID_` varchar(255) COLLATE utf8mb4_general_ci NOT NULL,
| `NAME_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `VERSION_` int DEFAULT NULL,
| `KEY_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `CATEGORY_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `DEPLOYMENT_ID_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `RESOURCE_NAME_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `DESCRIPTION_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| PRIMARY KEY (`ID_`),
| UNIQUE KEY `ACT_IDX_EVENT_DEF_UNIQ` (`KEY_`,`VERSION_`,`TENANT_ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
| -- ----------------------------
| -- Records of FLW_EVENT_DEFINITION
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for FLW_EVENT_DEPLOYMENT
| -- ----------------------------
| DROP TABLE IF EXISTS `FLW_EVENT_DEPLOYMENT`;
| CREATE TABLE `FLW_EVENT_DEPLOYMENT` (
| `ID_` varchar(255) COLLATE utf8mb4_general_ci NOT NULL,
| `NAME_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `CATEGORY_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `DEPLOY_TIME_` datetime(3) DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `PARENT_DEPLOYMENT_ID_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| PRIMARY KEY (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
| -- ----------------------------
| -- Records of FLW_EVENT_DEPLOYMENT
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for FLW_EVENT_RESOURCE
| -- ----------------------------
| DROP TABLE IF EXISTS `FLW_EVENT_RESOURCE`;
| CREATE TABLE `FLW_EVENT_RESOURCE` (
| `ID_` varchar(255) COLLATE utf8mb4_general_ci NOT NULL,
| `NAME_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `DEPLOYMENT_ID_` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL,
| `RESOURCE_BYTES_` longblob,
| PRIMARY KEY (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
| -- ----------------------------
| -- Records of FLW_EVENT_RESOURCE
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for FLW_RU_BATCH
| -- ----------------------------
| DROP TABLE IF EXISTS `FLW_RU_BATCH`;
| CREATE TABLE `FLW_RU_BATCH` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT NULL,
| `TYPE_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `SEARCH_KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SEARCH_KEY2_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `CREATE_TIME_` datetime(3) NOT NULL,
| `COMPLETE_TIME_` datetime(3) DEFAULT NULL,
| `STATUS_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `BATCH_DOC_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '',
| PRIMARY KEY (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of FLW_RU_BATCH
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for FLW_RU_BATCH_PART
| -- ----------------------------
| DROP TABLE IF EXISTS `FLW_RU_BATCH_PART`;
| CREATE TABLE `FLW_RU_BATCH_PART` (
| `ID_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `REV_` int DEFAULT NULL,
| `BATCH_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `TYPE_` varchar(64) COLLATE utf8mb3_bin NOT NULL,
| `SCOPE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `SUB_SCOPE_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `SCOPE_TYPE_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `SEARCH_KEY_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `SEARCH_KEY2_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `CREATE_TIME_` datetime(3) NOT NULL,
| `COMPLETE_TIME_` datetime(3) DEFAULT NULL,
| `STATUS_` varchar(255) COLLATE utf8mb3_bin DEFAULT NULL,
| `RESULT_DOC_ID_` varchar(64) COLLATE utf8mb3_bin DEFAULT NULL,
| `TENANT_ID_` varchar(255) COLLATE utf8mb3_bin DEFAULT '',
| PRIMARY KEY (`ID_`),
| KEY `FLW_IDX_BATCH_PART` (`BATCH_ID_`),
| CONSTRAINT `FLW_FK_BATCH_PART_PARENT` FOREIGN KEY (`BATCH_ID_`) REFERENCES `FLW_RU_BATCH` (`ID_`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin;
|
| -- ----------------------------
| -- Records of FLW_RU_BATCH_PART
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for gen_table
| -- ----------------------------
| DROP TABLE IF EXISTS `gen_table`;
| CREATE TABLE `gen_table` (
| `table_id` bigint NOT NULL COMMENT '编号',
| `data_name` varchar(200) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '数据源名称',
| `table_name` varchar(200) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '表名称',
| `table_comment` varchar(500) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '表描述',
| `sub_table_name` varchar(64) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '关联子表的表名',
| `sub_table_fk_name` varchar(64) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '子表关联的外键名',
| `class_name` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '实体类名称',
| `tpl_category` varchar(200) COLLATE utf8mb4_general_ci DEFAULT 'crud' COMMENT '使用的模板(crud单表操作 tree树表操作)',
| `package_name` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '生成包路径',
| `module_name` varchar(30) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '生成模块名',
| `business_name` varchar(30) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '生成业务名',
| `function_name` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '生成功能名',
| `function_author` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '生成功能作者',
| `gen_type` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '生成代码方式(0zip压缩包 1自定义路径)',
| `gen_path` varchar(200) COLLATE utf8mb4_general_ci DEFAULT '/' COMMENT '生成路径(不填默认项目路径)',
| `options` varchar(1000) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '其它生成选项',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
| PRIMARY KEY (`table_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='代码生成业务表';
|
| -- ----------------------------
| -- Records of gen_table
| -- ----------------------------
| BEGIN;
| INSERT INTO `gen_table` (`table_id`, `data_name`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1878998754225594370, 'master', 'eims_equ_statu', '设备状态记录表', NULL, NULL, 'EimsEquStatu', 'crud', 'org.dromara.eims', 'eims', 'equStatu', '设备状态记录', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1876074027672731650\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01', NULL);
| INSERT INTO `gen_table` (`table_id`, `data_name`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879759150687555586, 'master', 'eims_inventory', '盘点表', NULL, NULL, 'EimsInventory', 'crud', 'org.dromara.equ', 'equ', 'inventory', '盘点', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1876074027672731650\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54', NULL);
| INSERT INTO `gen_table` (`table_id`, `data_name`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1887329734783520770, 'master', 'eims_inventory_detail', '盘点明细表', NULL, NULL, 'EimsInventoryDetail', 'crud', 'org.dromara.eims', 'eims', 'inventoryDetail', '盘点明细', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1879762189070733313\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04', NULL);
| INSERT INTO `gen_table` (`table_id`, `data_name`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888835484331630593, 'master', 'eims_repair_req', '故障报修', NULL, NULL, 'EimsRepairReq', 'crud', 'org.dromara.eims', 'eims', 'repairReq', '故障报修', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1888814115854311426\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17', NULL);
| INSERT INTO `gen_table` (`table_id`, `data_name`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890262999453499393, 'master', 'eims_fixture', '工具(治具)台账', NULL, NULL, 'EimsFixture', 'crud', 'org.dromara.eims', 'eims', 'fixture', '工具(治具)台账', 'zhuguifei', '0', '/', '{\"parentMenuId\":0,\"popupComponent\":\"drawer\"}', NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56', NULL);
| INSERT INTO `gen_table` (`table_id`, `data_name`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891318327058231298, 'master', 'eims_fixture_type', '工具类型', NULL, NULL, 'EimsFixtureType', 'tree', 'org.dromara.eims', 'eims', 'fixtureType', '工具类型', 'zhuguifei', '0', '/', '{\"treeCode\":\"id\",\"treeName\":\"type_name\",\"treeParentCode\":\"parent_id\",\"parentMenuId\":\"1890266675786121217\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09', NULL);
| INSERT INTO `gen_table` (`table_id`, `data_name`, `table_name`, `table_comment`, `sub_table_name`, `sub_table_fk_name`, `class_name`, `tpl_category`, `package_name`, `module_name`, `business_name`, `function_name`, `function_author`, `gen_type`, `gen_path`, `options`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891691301390053378, 'master', 'eims_fixture_borrow', '工具借用记录', NULL, NULL, 'EimsFixtureBorrow', 'crud', 'org.dromara.eims', 'eims', 'fixtureBorrow', '工具借用', 'zhuguifei', '0', '/', '{\"parentMenuId\":\"1890266675786121217\",\"popupComponent\":\"drawer\"}', NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19', NULL);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for gen_table_column
| -- ----------------------------
| DROP TABLE IF EXISTS `gen_table_column`;
| CREATE TABLE `gen_table_column` (
| `column_id` bigint NOT NULL COMMENT '编号',
| `table_id` bigint DEFAULT NULL COMMENT '归属表编号',
| `column_name` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '列名称',
| `column_comment` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '列描述',
| `column_type` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '列类型',
| `java_type` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'JAVA类型',
| `java_field` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'JAVA字段名',
| `is_pk` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '是否主键(1是)',
| `is_increment` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '是否自增(1是)',
| `is_required` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '是否必填(1是)',
| `is_insert` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '是否为插入字段(1是)',
| `is_edit` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '是否编辑字段(1是)',
| `is_list` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '是否列表字段(1是)',
| `is_query` char(1) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '是否查询字段(1是)',
| `query_type` varchar(200) COLLATE utf8mb4_general_ci DEFAULT 'EQ' COMMENT '查询方式(等于、不等于、大于、小于、范围)',
| `html_type` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)',
| `dict_type` varchar(200) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '字典类型',
| `sort` int DEFAULT NULL COMMENT '排序',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| PRIMARY KEY (`column_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='代码生成业务表字段';
|
| -- ----------------------------
| -- Records of gen_table_column
| -- ----------------------------
| BEGIN;
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754393366529, 1878998754225594370, 'equ_statu_id', '设备状态记录id', 'bigint', 'Long', 'equStatuId', '1', '1', '0', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754401755138, 1878998754225594370, 'equ_id', '设备id', 'bigint', 'Long', 'equId', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'select', '', 2, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754405949441, 1878998754225594370, 'before_change', '变更前状态', 'char', 'String', 'beforeChange', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 3, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754405949442, 1878998754225594370, 'after_change', '变更后状态', 'char', 'String', 'afterChange', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 4, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754405949443, 1878998754225594370, 'change_date', '变更日期', 'datetime', 'Date', 'changeDate', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'datetime', '', 5, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754410143745, 1878998754225594370, 'change_user', '变更人', 'bigint', 'Long', 'changeUser', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 6, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754410143746, 1878998754225594370, 'user_dept', '变更人部门', 'bigint', 'Long', 'userDept', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 7, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754414338050, 1878998754225594370, 'change_desc', '变更描述', 'varchar', 'String', 'changeDesc', '0', '1', '1', '1', '1', '1', '0', 'EQ', 'input', '', 8, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754414338051, 1878998754225594370, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 9, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754418532354, 1878998754225594370, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 10, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754418532355, 1878998754225594370, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 11, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754418532356, 1878998754225594370, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 12, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754422726657, 1878998754225594370, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 13, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1878998754422726658, 1878998754225594370, 'remark', '描述', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 14, NULL, 1, '2025-01-14 10:53:08', 1, '2025-01-14 10:56:01');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150742081538, 1879759150687555586, 'inventory_id', '盘点id', 'bigint', 'Long', 'inventoryId', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150742081539, 1879759150687555586, 'inventory_code', '盘点单号', 'varchar', 'String', 'inventoryCode', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 2, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150746275841, 1879759150687555586, 'inventory_name', '盘点名称', 'varchar', 'String', 'inventoryName', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 3, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150746275842, 1879759150687555586, 'inventory_user', '盘点人', 'bigint', 'Long', 'inventoryUser', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 4, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150746275843, 1879759150687555586, 'start_date', '开始日期', 'datetime', 'Date', 'startDate', '0', '1', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 5, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150746275844, 1879759150687555586, 'end_date', '结束日期', 'datetime', 'Date', 'endDate', '0', '1', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 6, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150750470145, 1879759150687555586, 'status', '盘点状态', 'char', 'String', 'status', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'radio', '', 7, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150750470146, 1879759150687555586, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 8, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150750470147, 1879759150687555586, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '1', 'BETWEEN', 'input', '', 9, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150750470148, 1879759150687555586, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 10, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150754664449, 1879759150687555586, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 11, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150754664450, 1879759150687555586, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 12, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1879759150754664451, 1879759150687555586, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 13, NULL, 1, '2025-01-16 13:14:40', 1, '2025-01-16 13:17:54');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734955487233, 1887329734783520770, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734963875841, 1887329734783520770, 'inventory_id', '盘点id', 'bigint', 'Long', 'inventoryId', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734963875842, 1887329734783520770, 'equ_id', '设备id', 'bigint', 'Long', 'equId', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 3, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734963875843, 1887329734783520770, 'status', '盘点结果', 'char', 'String', 'status', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'radio', '', 4, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734968070145, 1887329734783520770, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 5, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734968070146, 1887329734783520770, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 6, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734968070147, 1887329734783520770, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 7, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734968070148, 1887329734783520770, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 8, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734968070149, 1887329734783520770, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 9, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1887329734972264450, 1887329734783520770, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 10, NULL, 1, '2025-02-06 10:37:28', 1, '2025-02-06 10:40:04');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484528762881, 1888835484331630593, 'id', '报修id', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484537151490, 1888835484331630593, 'code', '报修单号', 'varchar', 'String', 'code', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 2, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484537151491, 1888835484331630593, 'status', '报修状态', 'char', 'String', 'status', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'radio', '', 3, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484537151492, 1888835484331630593, 'occ_time', '发生事件', 'datetime', 'Date', 'occTime', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'datetime', '', 4, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484537151493, 1888835484331630593, 'req_time', '报修时间', 'datetime', 'Date', 'reqTime', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'datetime', '', 5, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484541345794, 1888835484331630593, 'req_dept', '报修人部门', 'bigint', 'Long', 'reqDept', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 6, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484541345795, 1888835484331630593, 'req_user', '报修人', 'bigint', 'Long', 'reqUser', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 7, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484541345796, 1888835484331630593, 'req_desc', '报修描述', 'varchar', 'String', 'reqDesc', '0', '1', '1', '1', '1', '1', '0', 'EQ', 'input', '', 8, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484541345797, 1888835484331630593, 'urgency_level', '紧急程度', 'char', 'String', 'urgencyLevel', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 9, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484541345798, 1888835484331630593, 'fault_picture', '故障图片', 'varchar', 'String', 'faultPicture', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 10, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484545540097, 1888835484331630593, 'req_type', '报修类型', 'char', 'String', 'reqType', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'select', '', 11, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484545540098, 1888835484331630593, 'equ_id', '设备id', 'bigint', 'Long', 'equId', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 12, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484545540099, 1888835484331630593, 'repair_id', '维修单id', 'bigint', 'Long', 'repairId', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 13, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484545540100, 1888835484331630593, 'repair_dept', '维修人部门', 'bigint', 'Long', 'repairDept', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 14, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484545540101, 1888835484331630593, 'repair_user', '维修人', 'bigint', 'Long', 'repairUser', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 15, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484549734401, 1888835484331630593, 'fault_type', '故障类别', 'char', 'String', 'faultType', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'select', '', 16, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484549734402, 1888835484331630593, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 17, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484549734403, 1888835484331630593, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 18, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484549734404, 1888835484331630593, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 19, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484549734405, 1888835484331630593, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 20, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484549734406, 1888835484331630593, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 21, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1888835484553928705, 1888835484331630593, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 22, NULL, 1, '2025-02-10 14:20:47', 1, '2025-02-10 14:27:17');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1890262999663214593, 1890262999453499393, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1890262999671603201, 1890262999453499393, 'fixtrue_code', '治具编码', 'varchar', 'String', 'fixtrueCode', '0', '1', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 2, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1890262999675797505, 1890262999453499393, 'fixtrue_name', '治具名称', 'varchar', 'String', 'fixtrueName', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 3, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1890262999675797506, 1890262999453499393, 'fixtrue_type', '治具(工具)类型', 'char', 'String', 'fixtrueType', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'select', 'eims_fixtrue_type', 4, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1890262999679991810, 1890262999453499393, 'fixtrue_desc', '治具描述', 'varchar', 'String', 'fixtrueDesc', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 5, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1890262999679991811, 1890262999453499393, 'asset_no', '资产编号', 'varchar', 'String', 'assetNo', '0', '1', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 7, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1890262999679991812, 1890262999453499393, 'model_no', '型号', 'varchar', 'String', 'modelNo', '0', '1', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 8, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1890262999684186113, 1890262999453499393, 'spec_no', '规格', 'varchar', 'String', 'specNo', '0', '1', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 9, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1890262999684186114, 1890262999453499393, 'made_in', '制造商', 'varchar', 'String', 'madeIn', '0', '1', '0', '1', '1', '1', '1', 'LIKE', 'input', '', 10, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1890262999684186115, 1890262999453499393, 'purchase_date', '采购日期', 'date', 'Date', 'purchaseDate', '0', '1', '0', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 11, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1890262999688380417, 1890262999453499393, 'deploy_date', '使用日期', 'date', 'Date', 'deployDate', '0', '1', '0', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 12, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1890262999688380418, 1890262999453499393, 'service_life', '使用年限', 'int', 'Long', 'serviceLife', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 13, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1890262999688380419, 1890262999453499393, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 14, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1890262999692574722, 1890262999453499393, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 15, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1890262999692574723, 1890262999453499393, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 16, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1890262999692574724, 1890262999453499393, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 17, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1890262999692574725, 1890262999453499393, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 18, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1890262999696769025, 1890262999453499393, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 19, NULL, 1, '2025-02-14 12:53:13', 1, '2025-02-14 13:04:56');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1890265656763187201, 1890262999453499393, 'status', '状态(字典)', 'char', 'String', 'status', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'radio', 'eims_fixtrue_status', 6, 103, 1, '2025-02-14 13:03:47', 1, '2025-02-14 13:04:56');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891318327402164225, 1891318327058231298, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891318327414747138, 1891318327058231298, 'type_name', '类型名称', 'varchar', 'String', 'typeName', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 2, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891318327418941442, 1891318327058231298, 'type_code', '类型编码', 'varchar', 'String', 'typeCode', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 3, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891318327418941443, 1891318327058231298, 'parent_id', '父id', 'bigint', 'Long', 'parentId', '0', '1', '1', '1', '1', '1', '0', 'EQ', 'input', '', 4, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891318327423135745, 1891318327058231298, 'order_num', '显示顺序', 'int', 'Long', 'orderNum', '0', '1', '1', '1', '1', '1', '0', 'EQ', 'input', '', 5, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891318327423135746, 1891318327058231298, 'menu_type', '菜单类型(M目录 C菜单 F按钮)', 'char', 'String', 'menuType', '0', '1', '1', '1', '1', '1', '0', 'EQ', 'select', '', 6, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891318327427330050, 1891318327058231298, 'icon', '菜单图标', 'varchar', 'String', 'icon', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 7, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891318327427330051, 1891318327058231298, 'status', '菜单状态(0正常 1停用)', 'char', 'String', 'status', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'radio', 'sys_show_hide', 8, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891318327435718657, 1891318327058231298, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 9, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891318327435718658, 1891318327058231298, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 10, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891318327439912961, 1891318327058231298, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 11, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891318327444107265, 1891318327058231298, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 12, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891318327444107266, 1891318327058231298, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 13, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891318327444107267, 1891318327058231298, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 14, NULL, 1, '2025-02-17 10:46:43', 1, '2025-02-17 10:51:09');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891691301759152129, 1891691301390053378, 'id', '', 'bigint', 'Long', 'id', '1', '1', '1', '0', '1', '1', '0', 'EQ', 'input', '', 1, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891691301767540738, 1891691301390053378, 'fixture_id', '借用工具id', 'bigint', 'Long', 'fixtureId', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 2, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891691301767540739, 1891691301390053378, 'borrow_dept', '借用部门', 'bigint', 'Long', 'borrowDept', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'select', '', 4, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891691301771735042, 1891691301390053378, 'borrow_user', '借用人', 'bigint', 'Long', 'borrowUser', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 5, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891691301771735043, 1891691301390053378, 'agent_user', '经办人', 'bigint', 'Long', 'agentUser', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'input', '', 6, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891691301771735044, 1891691301390053378, 'status', '借用记录状态(字典)', 'char', 'String', 'status', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'radio', 'fixture_borrow_record_status', 7, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891691301771735045, 1891691301390053378, 'borrow_time', '借用时间', 'datetime', 'Date', 'borrowTime', '0', '1', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 8, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891691301775929345, 1891691301390053378, 'plan_return_time', '预计归还时间', 'datetime', 'Date', 'planReturnTime', '0', '1', '1', '1', '1', '1', '1', 'BETWEEN', 'datetime', '', 9, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891691301775929346, 1891691301390053378, 'return_time', '归还时间', 'datetime', 'Date', 'returnTime', '0', '1', '0', '1', '1', '1', '1', 'EQ', 'datetime', '', 10, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891691301775929347, 1891691301390053378, 'borrow_reason', '借用理由', 'varchar', 'String', 'borrowReason', '0', '1', '1', '1', '1', '1', '1', 'EQ', 'input', '', 11, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891691301775929348, 1891691301390053378, 'create_dept', '创建部门', 'bigint', 'Long', 'createDept', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 12, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891691301780123650, 1891691301390053378, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 13, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891691301780123651, 1891691301390053378, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 14, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891691301780123652, 1891691301390053378, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'input', '', 15, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891691301780123653, 1891691301390053378, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '1', '0', '0', '0', '0', '0', 'EQ', 'datetime', '', 16, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891691301784317953, 1891691301390053378, 'remark', '备注', 'varchar', 'String', 'remark', '0', '1', '0', '1', '1', '1', '0', 'EQ', 'input', '', 17, NULL, 1, '2025-02-18 11:28:47', 1, '2025-02-18 13:14:19');
| INSERT INTO `gen_table_column` (`column_id`, `table_id`, `column_name`, `column_comment`, `column_type`, `java_type`, `java_field`, `is_pk`, `is_increment`, `is_required`, `is_insert`, `is_edit`, `is_list`, `is_query`, `query_type`, `html_type`, `dict_type`, `sort`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1891716189085560834, 1891691301390053378, 'fixture_name', '借用工具名称', 'varchar', 'String', 'fixtureName', '0', '1', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 3, 103, 1, '2025-02-18 13:07:41', 1, '2025-02-18 13:14:19');
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_distributed_lock
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_distributed_lock`;
| CREATE TABLE `sj_distributed_lock` (
| `name` varchar(64) NOT NULL COMMENT '锁名称',
| `lock_until` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) ON UPDATE CURRENT_TIMESTAMP(3) COMMENT '锁定时长',
| `locked_at` timestamp(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) COMMENT '锁定时间',
| `locked_by` varchar(255) NOT NULL COMMENT '锁定者',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间',
| PRIMARY KEY (`name`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='锁定表';
|
| -- ----------------------------
| -- Records of sj_distributed_lock
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_group_config
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_group_config`;
| CREATE TABLE `sj_group_config` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `group_name` varchar(64) NOT NULL DEFAULT '' COMMENT '组名称',
| `description` varchar(256) NOT NULL DEFAULT '' COMMENT '组描述',
| `token` varchar(64) NOT NULL DEFAULT 'SJ_cKqBTPzCsWA3VyuCfFoccmuIEGXjr5KT' COMMENT 'token',
| `group_status` tinyint NOT NULL DEFAULT '0' COMMENT '组状态 0、未启用 1、启用',
| `version` int NOT NULL COMMENT '版本号',
| `group_partition` int NOT NULL COMMENT '分区',
| `id_generator_mode` tinyint NOT NULL DEFAULT '1' COMMENT '唯一id生成模式 默认号段模式',
| `init_scene` tinyint NOT NULL DEFAULT '0' COMMENT '是否初始化场景 0:否 1:是',
| `bucket_index` int NOT NULL DEFAULT '0' COMMENT 'bucket',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
| PRIMARY KEY (`id`),
| UNIQUE KEY `uk_namespace_id_group_name` (`namespace_id`,`group_name`)
| ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='组配置';
|
| -- ----------------------------
| -- Records of sj_group_config
| -- ----------------------------
| BEGIN;
| INSERT INTO `sj_group_config` (`id`, `namespace_id`, `group_name`, `description`, `token`, `group_status`, `version`, `group_partition`, `id_generator_mode`, `init_scene`, `bucket_index`, `create_dt`, `update_dt`) VALUES (1, 'dev', 'ruoyi_group', '', 'SJ_cKqBTPzCsWA3VyuCfFoccmuIEGXjr5KT', 1, 1, 0, 1, 1, 4, '2025-02-12 13:15:48', '2025-02-12 13:15:48');
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_job
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_job`;
| CREATE TABLE `sj_job` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `group_name` varchar(64) NOT NULL COMMENT '组名称',
| `job_name` varchar(64) NOT NULL COMMENT '名称',
| `args_str` text COMMENT '执行方法参数',
| `args_type` tinyint NOT NULL DEFAULT '1' COMMENT '参数类型 ',
| `next_trigger_at` bigint NOT NULL COMMENT '下次触发时间',
| `job_status` tinyint NOT NULL DEFAULT '1' COMMENT '任务状态 0、关闭、1、开启',
| `task_type` tinyint NOT NULL DEFAULT '1' COMMENT '任务类型 1、集群 2、广播 3、切片',
| `route_key` tinyint NOT NULL DEFAULT '4' COMMENT '路由策略',
| `executor_type` tinyint NOT NULL DEFAULT '1' COMMENT '执行器类型',
| `executor_info` varchar(255) DEFAULT NULL COMMENT '执行器名称',
| `trigger_type` tinyint NOT NULL COMMENT '触发类型 1.CRON 表达式 2. 固定时间',
| `trigger_interval` varchar(255) NOT NULL COMMENT '间隔时长',
| `block_strategy` tinyint NOT NULL DEFAULT '1' COMMENT '阻塞策略 1、丢弃 2、覆盖 3、并行',
| `executor_timeout` int NOT NULL DEFAULT '0' COMMENT '任务执行超时时间,单位秒',
| `max_retry_times` int NOT NULL DEFAULT '0' COMMENT '最大重试次数',
| `parallel_num` int NOT NULL DEFAULT '1' COMMENT '并行数',
| `retry_interval` int NOT NULL DEFAULT '0' COMMENT '重试间隔(s)',
| `bucket_index` int NOT NULL DEFAULT '0' COMMENT 'bucket',
| `resident` tinyint NOT NULL DEFAULT '0' COMMENT '是否是常驻任务',
| `description` varchar(256) NOT NULL DEFAULT '' COMMENT '描述',
| `ext_attrs` varchar(256) DEFAULT '' COMMENT '扩展字段',
| `deleted` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除 1、删除',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
| PRIMARY KEY (`id`),
| KEY `idx_namespace_id_group_name` (`namespace_id`,`group_name`),
| KEY `idx_job_status_bucket_index` (`job_status`,`bucket_index`),
| KEY `idx_create_dt` (`create_dt`)
| ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='任务信息';
|
| -- ----------------------------
| -- Records of sj_job
| -- ----------------------------
| BEGIN;
| INSERT INTO `sj_job` (`id`, `namespace_id`, `group_name`, `job_name`, `args_str`, `args_type`, `next_trigger_at`, `job_status`, `task_type`, `route_key`, `executor_type`, `executor_info`, `trigger_type`, `trigger_interval`, `block_strategy`, `executor_timeout`, `max_retry_times`, `parallel_num`, `retry_interval`, `bucket_index`, `resident`, `description`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (1, 'dev', 'ruoyi_group', 'demo-job', NULL, 1, 1739351466193, 1, 1, 4, 1, 'testJobExecutor', 2, '60', 1, 60, 3, 1, 1, 116, 0, '', '', 0, '2025-02-12 13:15:48', '2025-02-12 17:09:56');
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_job_log_message
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_job_log_message`;
| CREATE TABLE `sj_job_log_message` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `group_name` varchar(64) NOT NULL COMMENT '组名称',
| `job_id` bigint NOT NULL COMMENT '任务信息id',
| `task_batch_id` bigint NOT NULL COMMENT '任务批次id',
| `task_id` bigint NOT NULL COMMENT '调度任务id',
| `message` longtext NOT NULL COMMENT '调度信息',
| `log_num` int NOT NULL DEFAULT '1' COMMENT '日志数量',
| `real_time` bigint NOT NULL DEFAULT '0' COMMENT '上报时间',
| `ext_attrs` varchar(256) DEFAULT '' COMMENT '扩展字段',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| PRIMARY KEY (`id`),
| KEY `idx_task_batch_id_task_id` (`task_batch_id`,`task_id`),
| KEY `idx_create_dt` (`create_dt`),
| KEY `idx_namespace_id_group_name` (`namespace_id`,`group_name`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='调度日志';
|
| -- ----------------------------
| -- Records of sj_job_log_message
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_job_summary
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_job_summary`;
| CREATE TABLE `sj_job_summary` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `group_name` varchar(64) NOT NULL DEFAULT '' COMMENT '组名称',
| `business_id` bigint NOT NULL COMMENT '业务id (job_id或workflow_id)',
| `system_task_type` tinyint NOT NULL DEFAULT '3' COMMENT '任务类型 3、JOB任务 4、WORKFLOW任务',
| `trigger_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '统计时间',
| `success_num` int NOT NULL DEFAULT '0' COMMENT '执行成功-日志数量',
| `fail_num` int NOT NULL DEFAULT '0' COMMENT '执行失败-日志数量',
| `fail_reason` varchar(512) NOT NULL DEFAULT '' COMMENT '失败原因',
| `stop_num` int NOT NULL DEFAULT '0' COMMENT '执行失败-日志数量',
| `stop_reason` varchar(512) NOT NULL DEFAULT '' COMMENT '失败原因',
| `cancel_num` int NOT NULL DEFAULT '0' COMMENT '执行失败-日志数量',
| `cancel_reason` varchar(512) NOT NULL DEFAULT '' COMMENT '失败原因',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
| PRIMARY KEY (`id`),
| UNIQUE KEY `uk_trigger_at_system_task_type_business_id` (`trigger_at`,`system_task_type`,`business_id`) USING BTREE,
| KEY `idx_namespace_id_group_name_business_id` (`namespace_id`,`group_name`,`business_id`)
| ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='DashBoard_Job';
|
| -- ----------------------------
| -- Records of sj_job_summary
| -- ----------------------------
| BEGIN;
| INSERT INTO `sj_job_summary` (`id`, `namespace_id`, `group_name`, `business_id`, `system_task_type`, `trigger_at`, `success_num`, `fail_num`, `fail_reason`, `stop_num`, `stop_reason`, `cancel_num`, `cancel_reason`, `create_dt`, `update_dt`) VALUES (1, 'dev', 'ruoyi_group', 1, 3, '2025-02-12 00:00:00', 0, 0, '[]', 0, '[]', 226, '[{\"reason\":2,\"total\":226}]', '2025-02-12 13:16:06', '2025-02-12 17:10:36');
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_job_task
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_job_task`;
| CREATE TABLE `sj_job_task` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `group_name` varchar(64) NOT NULL COMMENT '组名称',
| `job_id` bigint NOT NULL COMMENT '任务信息id',
| `task_batch_id` bigint NOT NULL COMMENT '调度任务id',
| `parent_id` bigint NOT NULL DEFAULT '0' COMMENT '父执行器id',
| `task_status` tinyint NOT NULL DEFAULT '0' COMMENT '执行的状态 0、失败 1、成功',
| `retry_count` int NOT NULL DEFAULT '0' COMMENT '重试次数',
| `mr_stage` tinyint DEFAULT NULL COMMENT '动态分片所处阶段 1:map 2:reduce 3:mergeReduce',
| `leaf` tinyint NOT NULL DEFAULT '1' COMMENT '叶子节点',
| `task_name` varchar(255) NOT NULL DEFAULT '' COMMENT '任务名称',
| `client_info` varchar(128) DEFAULT NULL COMMENT '客户端地址 clientId#ip:port',
| `wf_context` text COMMENT '工作流全局上下文',
| `result_message` text NOT NULL COMMENT '执行结果',
| `args_str` text COMMENT '执行方法参数',
| `args_type` tinyint NOT NULL DEFAULT '1' COMMENT '参数类型 ',
| `ext_attrs` varchar(256) DEFAULT '' COMMENT '扩展字段',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
| PRIMARY KEY (`id`),
| KEY `idx_task_batch_id_task_status` (`task_batch_id`,`task_status`),
| KEY `idx_create_dt` (`create_dt`),
| KEY `idx_namespace_id_group_name` (`namespace_id`,`group_name`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='任务实例';
|
| -- ----------------------------
| -- Records of sj_job_task
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_job_task_batch
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_job_task_batch`;
| CREATE TABLE `sj_job_task_batch` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `group_name` varchar(64) NOT NULL COMMENT '组名称',
| `job_id` bigint NOT NULL COMMENT '任务id',
| `workflow_node_id` bigint NOT NULL DEFAULT '0' COMMENT '工作流节点id',
| `parent_workflow_node_id` bigint NOT NULL DEFAULT '0' COMMENT '工作流任务父批次id',
| `workflow_task_batch_id` bigint NOT NULL DEFAULT '0' COMMENT '工作流任务批次id',
| `task_batch_status` tinyint NOT NULL DEFAULT '0' COMMENT '任务批次状态 0、失败 1、成功',
| `operation_reason` tinyint NOT NULL DEFAULT '0' COMMENT '操作原因',
| `execution_at` bigint NOT NULL DEFAULT '0' COMMENT '任务执行时间',
| `system_task_type` tinyint NOT NULL DEFAULT '3' COMMENT '任务类型 3、JOB任务 4、WORKFLOW任务',
| `parent_id` varchar(64) NOT NULL DEFAULT '' COMMENT '父节点',
| `ext_attrs` varchar(256) DEFAULT '' COMMENT '扩展字段',
| `deleted` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除 1、删除',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
| PRIMARY KEY (`id`),
| KEY `idx_job_id_task_batch_status` (`job_id`,`task_batch_status`),
| KEY `idx_create_dt` (`create_dt`),
| KEY `idx_namespace_id_group_name` (`namespace_id`,`group_name`),
| KEY `idx_workflow_task_batch_id_workflow_node_id` (`workflow_task_batch_id`,`workflow_node_id`)
| ) ENGINE=InnoDB AUTO_INCREMENT=227 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='任务批次';
|
| -- ----------------------------
| -- Records of sj_job_task_batch
| -- ----------------------------
| BEGIN;
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (1, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:15:58', '2025-02-12 13:15:58');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (2, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:16:56', '2025-02-12 13:16:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (3, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:17:56', '2025-02-12 13:17:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (4, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:18:56', '2025-02-12 13:18:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (5, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:19:56', '2025-02-12 13:19:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (6, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:20:56', '2025-02-12 13:20:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (7, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:21:56', '2025-02-12 13:21:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (8, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:22:56', '2025-02-12 13:22:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (9, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:23:56', '2025-02-12 13:23:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (10, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:24:56', '2025-02-12 13:24:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (11, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:25:56', '2025-02-12 13:25:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (12, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:26:56', '2025-02-12 13:26:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (13, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:27:56', '2025-02-12 13:27:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (14, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:28:56', '2025-02-12 13:28:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (15, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:29:56', '2025-02-12 13:29:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (16, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:30:56', '2025-02-12 13:30:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (17, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:31:56', '2025-02-12 13:31:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (18, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:32:56', '2025-02-12 13:32:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (19, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:33:56', '2025-02-12 13:33:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (20, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:34:56', '2025-02-12 13:34:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (21, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:35:56', '2025-02-12 13:35:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (22, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:36:56', '2025-02-12 13:36:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (23, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:37:56', '2025-02-12 13:37:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (24, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:38:56', '2025-02-12 13:38:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (25, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:39:56', '2025-02-12 13:39:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (26, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:40:56', '2025-02-12 13:40:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (27, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:41:56', '2025-02-12 13:41:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (28, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:42:56', '2025-02-12 13:42:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (29, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:43:56', '2025-02-12 13:43:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (30, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:44:56', '2025-02-12 13:44:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (31, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:45:56', '2025-02-12 13:45:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (32, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:46:56', '2025-02-12 13:46:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (33, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:47:56', '2025-02-12 13:47:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (34, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:48:56', '2025-02-12 13:48:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (35, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:49:56', '2025-02-12 13:49:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (36, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:50:56', '2025-02-12 13:50:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (37, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:51:56', '2025-02-12 13:51:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (38, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:52:56', '2025-02-12 13:52:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (39, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:53:56', '2025-02-12 13:53:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (40, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:54:56', '2025-02-12 13:54:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (41, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:55:56', '2025-02-12 13:55:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (42, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:56:56', '2025-02-12 13:56:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (43, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:57:56', '2025-02-12 13:57:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (44, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:58:56', '2025-02-12 13:58:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (45, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 13:59:56', '2025-02-12 13:59:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (46, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:00:56', '2025-02-12 14:00:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (47, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:01:56', '2025-02-12 14:01:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (48, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:02:56', '2025-02-12 14:02:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (49, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:03:56', '2025-02-12 14:03:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (50, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:04:56', '2025-02-12 14:04:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (51, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:05:56', '2025-02-12 14:05:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (52, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:06:56', '2025-02-12 14:06:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (53, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:07:56', '2025-02-12 14:07:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (54, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:08:56', '2025-02-12 14:08:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (55, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:09:56', '2025-02-12 14:09:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (56, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:10:56', '2025-02-12 14:10:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (57, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:11:56', '2025-02-12 14:11:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (58, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:12:56', '2025-02-12 14:12:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (59, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:13:56', '2025-02-12 14:13:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (60, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:14:56', '2025-02-12 14:14:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (61, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:15:56', '2025-02-12 14:15:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (62, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:16:56', '2025-02-12 14:16:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (63, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:17:56', '2025-02-12 14:17:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (64, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:18:56', '2025-02-12 14:18:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (65, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:19:56', '2025-02-12 14:19:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (66, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:20:56', '2025-02-12 14:20:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (67, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:21:56', '2025-02-12 14:21:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (68, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:22:56', '2025-02-12 14:22:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (69, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:23:56', '2025-02-12 14:23:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (70, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:24:56', '2025-02-12 14:24:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (71, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:25:56', '2025-02-12 14:25:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (72, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:26:56', '2025-02-12 14:26:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (73, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:27:56', '2025-02-12 14:27:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (74, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:28:56', '2025-02-12 14:28:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (75, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:29:56', '2025-02-12 14:29:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (76, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:30:56', '2025-02-12 14:30:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (77, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:31:56', '2025-02-12 14:31:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (78, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:32:56', '2025-02-12 14:32:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (79, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:33:56', '2025-02-12 14:33:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (80, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:34:56', '2025-02-12 14:34:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (81, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:35:56', '2025-02-12 14:35:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (82, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:36:56', '2025-02-12 14:36:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (83, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:37:56', '2025-02-12 14:37:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (84, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:38:56', '2025-02-12 14:38:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (85, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:39:56', '2025-02-12 14:39:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (86, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:40:56', '2025-02-12 14:40:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (87, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:41:56', '2025-02-12 14:41:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (88, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:42:56', '2025-02-12 14:42:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (89, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:43:56', '2025-02-12 14:43:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (90, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:44:56', '2025-02-12 14:44:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (91, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:45:56', '2025-02-12 14:45:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (92, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:46:56', '2025-02-12 14:46:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (93, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:47:56', '2025-02-12 14:47:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (94, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:48:56', '2025-02-12 14:48:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (95, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:49:56', '2025-02-12 14:49:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (96, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:50:56', '2025-02-12 14:50:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (97, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:51:56', '2025-02-12 14:51:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (98, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:52:56', '2025-02-12 14:52:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (99, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:53:56', '2025-02-12 14:53:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (100, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:54:56', '2025-02-12 14:54:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (101, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:55:56', '2025-02-12 14:55:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (102, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:56:56', '2025-02-12 14:56:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (103, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:57:56', '2025-02-12 14:57:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (104, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:58:56', '2025-02-12 14:58:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (105, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 14:59:56', '2025-02-12 14:59:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (106, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:00:56', '2025-02-12 15:00:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (107, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:01:56', '2025-02-12 15:01:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (108, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:02:56', '2025-02-12 15:02:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (109, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:03:56', '2025-02-12 15:03:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (110, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:04:56', '2025-02-12 15:04:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (111, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:05:56', '2025-02-12 15:05:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (112, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:06:56', '2025-02-12 15:06:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (113, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:07:56', '2025-02-12 15:07:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (114, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:08:56', '2025-02-12 15:08:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (115, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:09:56', '2025-02-12 15:09:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (116, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:10:56', '2025-02-12 15:10:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (117, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:11:56', '2025-02-12 15:11:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (118, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:12:56', '2025-02-12 15:12:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (119, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:13:56', '2025-02-12 15:13:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (120, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:14:56', '2025-02-12 15:14:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (121, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:15:56', '2025-02-12 15:15:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (122, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:16:56', '2025-02-12 15:16:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (123, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:17:56', '2025-02-12 15:17:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (124, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:18:56', '2025-02-12 15:18:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (125, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:19:56', '2025-02-12 15:19:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (126, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:20:56', '2025-02-12 15:20:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (127, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:21:56', '2025-02-12 15:21:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (128, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:22:56', '2025-02-12 15:22:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (129, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:23:56', '2025-02-12 15:23:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (130, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:24:56', '2025-02-12 15:24:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (131, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:25:56', '2025-02-12 15:25:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (132, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:26:56', '2025-02-12 15:26:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (133, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:27:56', '2025-02-12 15:27:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (134, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:28:56', '2025-02-12 15:28:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (135, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:29:56', '2025-02-12 15:29:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (136, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:30:56', '2025-02-12 15:30:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (137, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:31:56', '2025-02-12 15:31:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (138, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:32:56', '2025-02-12 15:32:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (139, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:33:56', '2025-02-12 15:33:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (140, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:34:56', '2025-02-12 15:34:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (141, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:35:56', '2025-02-12 15:35:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (142, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:36:56', '2025-02-12 15:36:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (143, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:37:56', '2025-02-12 15:37:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (144, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:38:56', '2025-02-12 15:38:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (145, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:39:56', '2025-02-12 15:39:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (146, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:40:56', '2025-02-12 15:40:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (147, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:41:56', '2025-02-12 15:41:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (148, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:42:56', '2025-02-12 15:42:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (149, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:43:56', '2025-02-12 15:43:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (150, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:44:56', '2025-02-12 15:44:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (151, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:45:56', '2025-02-12 15:45:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (152, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:46:56', '2025-02-12 15:46:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (153, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:47:56', '2025-02-12 15:47:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (154, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:48:56', '2025-02-12 15:48:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (155, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:49:56', '2025-02-12 15:49:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (156, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:50:56', '2025-02-12 15:50:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (157, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:51:56', '2025-02-12 15:51:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (158, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:52:56', '2025-02-12 15:52:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (159, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:53:56', '2025-02-12 15:53:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (160, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:54:56', '2025-02-12 15:54:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (161, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:55:56', '2025-02-12 15:55:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (162, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:56:56', '2025-02-12 15:56:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (163, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:57:56', '2025-02-12 15:57:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (164, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:58:56', '2025-02-12 15:58:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (165, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 15:59:56', '2025-02-12 15:59:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (166, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:00:56', '2025-02-12 16:00:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (167, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:01:56', '2025-02-12 16:01:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (168, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:02:56', '2025-02-12 16:02:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (169, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:03:56', '2025-02-12 16:03:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (170, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:04:56', '2025-02-12 16:04:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (171, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:05:56', '2025-02-12 16:05:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (172, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:06:56', '2025-02-12 16:06:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (173, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:07:56', '2025-02-12 16:07:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (174, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:08:56', '2025-02-12 16:08:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (175, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:09:56', '2025-02-12 16:09:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (176, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:10:56', '2025-02-12 16:10:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (177, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:11:56', '2025-02-12 16:11:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (178, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:12:56', '2025-02-12 16:12:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (179, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:13:56', '2025-02-12 16:13:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (180, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:14:56', '2025-02-12 16:14:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (181, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:15:56', '2025-02-12 16:15:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (182, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:16:56', '2025-02-12 16:16:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (183, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:17:56', '2025-02-12 16:17:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (184, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:18:56', '2025-02-12 16:18:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (185, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:19:56', '2025-02-12 16:19:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (186, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:20:56', '2025-02-12 16:20:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (187, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:21:56', '2025-02-12 16:21:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (188, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:22:56', '2025-02-12 16:22:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (189, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:23:56', '2025-02-12 16:23:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (190, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:24:56', '2025-02-12 16:24:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (191, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:25:56', '2025-02-12 16:25:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (192, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:26:56', '2025-02-12 16:26:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (193, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:27:56', '2025-02-12 16:27:56');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (194, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:38:06', '2025-02-12 16:38:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (195, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:39:06', '2025-02-12 16:39:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (196, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:40:06', '2025-02-12 16:40:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (197, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:41:06', '2025-02-12 16:41:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (198, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:42:06', '2025-02-12 16:42:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (199, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:43:06', '2025-02-12 16:43:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (200, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:44:06', '2025-02-12 16:44:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (201, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:45:06', '2025-02-12 16:45:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (202, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:46:06', '2025-02-12 16:46:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (203, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:47:06', '2025-02-12 16:47:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (204, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:48:06', '2025-02-12 16:48:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (205, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:49:06', '2025-02-12 16:49:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (206, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:50:06', '2025-02-12 16:50:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (207, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:51:06', '2025-02-12 16:51:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (208, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:52:06', '2025-02-12 16:52:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (209, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:53:06', '2025-02-12 16:53:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (210, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:54:06', '2025-02-12 16:54:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (211, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:55:06', '2025-02-12 16:55:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (212, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:56:06', '2025-02-12 16:56:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (213, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:57:06', '2025-02-12 16:57:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (214, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:58:06', '2025-02-12 16:58:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (215, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 16:59:06', '2025-02-12 16:59:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (216, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 17:00:06', '2025-02-12 17:00:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (217, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 17:01:06', '2025-02-12 17:01:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (218, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 17:02:06', '2025-02-12 17:02:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (219, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 17:03:06', '2025-02-12 17:03:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (220, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 17:04:06', '2025-02-12 17:04:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (221, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 17:05:06', '2025-02-12 17:05:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (222, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 17:06:06', '2025-02-12 17:06:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (223, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 17:07:06', '2025-02-12 17:07:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (224, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 17:08:06', '2025-02-12 17:08:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (225, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 17:09:06', '2025-02-12 17:09:06');
| INSERT INTO `sj_job_task_batch` (`id`, `namespace_id`, `group_name`, `job_id`, `workflow_node_id`, `parent_workflow_node_id`, `workflow_task_batch_id`, `task_batch_status`, `operation_reason`, `execution_at`, `system_task_type`, `parent_id`, `ext_attrs`, `deleted`, `create_dt`, `update_dt`) VALUES (226, 'dev', 'ruoyi_group', 1, 0, 0, 0, 6, 2, 0, 3, '', '', 0, '2025-02-12 17:09:56', '2025-02-12 17:09:56');
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_namespace
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_namespace`;
| CREATE TABLE `sj_namespace` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `name` varchar(64) NOT NULL COMMENT '名称',
| `unique_id` varchar(64) NOT NULL COMMENT '唯一id',
| `description` varchar(256) NOT NULL DEFAULT '' COMMENT '描述',
| `deleted` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除 1、删除',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
| PRIMARY KEY (`id`),
| UNIQUE KEY `uk_unique_id` (`unique_id`),
| KEY `idx_name` (`name`)
| ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='命名空间';
|
| -- ----------------------------
| -- Records of sj_namespace
| -- ----------------------------
| BEGIN;
| INSERT INTO `sj_namespace` (`id`, `name`, `unique_id`, `description`, `deleted`, `create_dt`, `update_dt`) VALUES (1, 'Development', 'dev', '', 0, '2025-02-12 13:15:48', '2025-02-12 13:15:48');
| INSERT INTO `sj_namespace` (`id`, `name`, `unique_id`, `description`, `deleted`, `create_dt`, `update_dt`) VALUES (2, 'Production', 'prod', '', 0, '2025-02-12 13:15:48', '2025-02-12 13:15:48');
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_notify_config
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_notify_config`;
| CREATE TABLE `sj_notify_config` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `group_name` varchar(64) NOT NULL COMMENT '组名称',
| `business_id` varchar(64) NOT NULL COMMENT '业务id (job_id或workflow_id或scene_name)',
| `system_task_type` tinyint NOT NULL DEFAULT '3' COMMENT '任务类型 1. 重试任务 2. 重试回调 3、JOB任务 4、WORKFLOW任务',
| `notify_status` tinyint NOT NULL DEFAULT '0' COMMENT '通知状态 0、未启用 1、启用',
| `recipient_ids` varchar(128) NOT NULL COMMENT '接收人id列表',
| `notify_threshold` int NOT NULL DEFAULT '0' COMMENT '通知阈值',
| `notify_scene` tinyint NOT NULL DEFAULT '0' COMMENT '通知场景',
| `rate_limiter_status` tinyint NOT NULL DEFAULT '0' COMMENT '限流状态 0、未启用 1、启用',
| `rate_limiter_threshold` int NOT NULL DEFAULT '0' COMMENT '每秒限流阈值',
| `description` varchar(256) NOT NULL DEFAULT '' COMMENT '描述',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
| PRIMARY KEY (`id`),
| KEY `idx_namespace_id_group_name_scene_name` (`namespace_id`,`group_name`,`business_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='通知配置';
|
| -- ----------------------------
| -- Records of sj_notify_config
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_notify_recipient
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_notify_recipient`;
| CREATE TABLE `sj_notify_recipient` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `recipient_name` varchar(64) NOT NULL COMMENT '接收人名称',
| `notify_type` tinyint NOT NULL DEFAULT '0' COMMENT '通知类型 1、钉钉 2、邮件 3、企业微信 4 飞书 5 webhook',
| `notify_attribute` varchar(512) NOT NULL COMMENT '配置属性',
| `description` varchar(256) NOT NULL DEFAULT '' COMMENT '描述',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
| PRIMARY KEY (`id`),
| KEY `idx_namespace_id` (`namespace_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='告警通知接收人';
|
| -- ----------------------------
| -- Records of sj_notify_recipient
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_retry_dead_letter_0
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_retry_dead_letter_0`;
| CREATE TABLE `sj_retry_dead_letter_0` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `unique_id` varchar(64) NOT NULL COMMENT '同组下id唯一',
| `group_name` varchar(64) NOT NULL COMMENT '组名称',
| `scene_name` varchar(64) NOT NULL COMMENT '场景名称',
| `idempotent_id` varchar(64) NOT NULL COMMENT '幂等id',
| `biz_no` varchar(64) NOT NULL DEFAULT '' COMMENT '业务编号',
| `executor_name` varchar(512) NOT NULL DEFAULT '' COMMENT '执行器名称',
| `args_str` text NOT NULL COMMENT '执行方法参数',
| `ext_attrs` text NOT NULL COMMENT '扩展字段',
| `task_type` tinyint NOT NULL DEFAULT '1' COMMENT '任务类型 1、重试数据 2、回调数据',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| PRIMARY KEY (`id`),
| UNIQUE KEY `uk_namespace_id_group_name_unique_id` (`namespace_id`,`group_name`,`unique_id`),
| KEY `idx_namespace_id_group_name_scene_name` (`namespace_id`,`group_name`,`scene_name`),
| KEY `idx_idempotent_id` (`idempotent_id`),
| KEY `idx_biz_no` (`biz_no`),
| KEY `idx_create_dt` (`create_dt`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='死信队列表';
|
| -- ----------------------------
| -- Records of sj_retry_dead_letter_0
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_retry_scene_config
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_retry_scene_config`;
| CREATE TABLE `sj_retry_scene_config` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `scene_name` varchar(64) NOT NULL COMMENT '场景名称',
| `group_name` varchar(64) NOT NULL COMMENT '组名称',
| `scene_status` tinyint NOT NULL DEFAULT '0' COMMENT '组状态 0、未启用 1、启用',
| `max_retry_count` int NOT NULL DEFAULT '5' COMMENT '最大重试次数',
| `back_off` tinyint NOT NULL DEFAULT '1' COMMENT '1、默认等级 2、固定间隔时间 3、CRON 表达式',
| `trigger_interval` varchar(16) NOT NULL DEFAULT '' COMMENT '间隔时长',
| `deadline_request` bigint unsigned NOT NULL DEFAULT '60000' COMMENT 'Deadline Request 调用链超时 单位毫秒',
| `executor_timeout` int unsigned NOT NULL DEFAULT '5' COMMENT '任务执行超时时间,单位秒',
| `route_key` tinyint NOT NULL DEFAULT '4' COMMENT '路由策略',
| `description` varchar(256) NOT NULL DEFAULT '' COMMENT '描述',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
| PRIMARY KEY (`id`),
| UNIQUE KEY `uk_namespace_id_group_name_scene_name` (`namespace_id`,`group_name`,`scene_name`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='场景配置';
|
| -- ----------------------------
| -- Records of sj_retry_scene_config
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_retry_summary
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_retry_summary`;
| CREATE TABLE `sj_retry_summary` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `group_name` varchar(64) NOT NULL DEFAULT '' COMMENT '组名称',
| `scene_name` varchar(50) NOT NULL DEFAULT '' COMMENT '场景名称',
| `trigger_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '统计时间',
| `running_num` int NOT NULL DEFAULT '0' COMMENT '重试中-日志数量',
| `finish_num` int NOT NULL DEFAULT '0' COMMENT '重试完成-日志数量',
| `max_count_num` int NOT NULL DEFAULT '0' COMMENT '重试到达最大次数-日志数量',
| `suspend_num` int NOT NULL DEFAULT '0' COMMENT '暂停重试-日志数量',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
| PRIMARY KEY (`id`),
| UNIQUE KEY `uk_scene_name_trigger_at` (`namespace_id`,`group_name`,`scene_name`,`trigger_at`) USING BTREE,
| KEY `idx_trigger_at` (`trigger_at`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='DashBoard_Retry';
|
| -- ----------------------------
| -- Records of sj_retry_summary
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_retry_task_0
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_retry_task_0`;
| CREATE TABLE `sj_retry_task_0` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `unique_id` varchar(64) NOT NULL COMMENT '同组下id唯一',
| `group_name` varchar(64) NOT NULL COMMENT '组名称',
| `scene_name` varchar(64) NOT NULL COMMENT '场景名称',
| `idempotent_id` varchar(64) NOT NULL COMMENT '幂等id',
| `biz_no` varchar(64) NOT NULL DEFAULT '' COMMENT '业务编号',
| `executor_name` varchar(512) NOT NULL DEFAULT '' COMMENT '执行器名称',
| `args_str` text NOT NULL COMMENT '执行方法参数',
| `ext_attrs` text NOT NULL COMMENT '扩展字段',
| `next_trigger_at` datetime NOT NULL COMMENT '下次触发时间',
| `retry_count` int NOT NULL DEFAULT '0' COMMENT '重试次数',
| `retry_status` tinyint NOT NULL DEFAULT '0' COMMENT '重试状态 0、重试中 1、成功 2、最大重试次数',
| `task_type` tinyint NOT NULL DEFAULT '1' COMMENT '任务类型 1、重试数据 2、回调数据',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
| PRIMARY KEY (`id`),
| UNIQUE KEY `uk_name_unique_id` (`namespace_id`,`group_name`,`unique_id`),
| KEY `idx_namespace_id_group_name_scene_name` (`namespace_id`,`group_name`,`scene_name`),
| KEY `idx_namespace_id_group_name_task_type` (`namespace_id`,`group_name`,`task_type`),
| KEY `idx_namespace_id_group_name_retry_status` (`namespace_id`,`group_name`,`retry_status`),
| KEY `idx_idempotent_id` (`idempotent_id`),
| KEY `idx_biz_no` (`biz_no`),
| KEY `idx_create_dt` (`create_dt`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='任务表';
|
| -- ----------------------------
| -- Records of sj_retry_task_0
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_retry_task_log
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_retry_task_log`;
| CREATE TABLE `sj_retry_task_log` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `unique_id` varchar(64) NOT NULL COMMENT '同组下id唯一',
| `group_name` varchar(64) NOT NULL COMMENT '组名称',
| `scene_name` varchar(64) NOT NULL COMMENT '场景名称',
| `idempotent_id` varchar(64) NOT NULL COMMENT '幂等id',
| `biz_no` varchar(64) NOT NULL DEFAULT '' COMMENT '业务编号',
| `executor_name` varchar(512) NOT NULL DEFAULT '' COMMENT '执行器名称',
| `args_str` text NOT NULL COMMENT '执行方法参数',
| `ext_attrs` text NOT NULL COMMENT '扩展字段',
| `retry_status` tinyint NOT NULL DEFAULT '0' COMMENT '重试状态 0、重试中 1、成功 2、最大次数',
| `task_type` tinyint NOT NULL DEFAULT '1' COMMENT '任务类型 1、重试数据 2、回调数据',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
| PRIMARY KEY (`id`),
| KEY `idx_group_name_scene_name` (`namespace_id`,`group_name`,`scene_name`),
| KEY `idx_retry_status` (`retry_status`),
| KEY `idx_idempotent_id` (`idempotent_id`),
| KEY `idx_unique_id` (`unique_id`),
| KEY `idx_biz_no` (`biz_no`),
| KEY `idx_create_dt` (`create_dt`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='任务日志基础信息表';
|
| -- ----------------------------
| -- Records of sj_retry_task_log
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_retry_task_log_message
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_retry_task_log_message`;
| CREATE TABLE `sj_retry_task_log_message` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `group_name` varchar(64) NOT NULL COMMENT '组名称',
| `unique_id` varchar(64) NOT NULL COMMENT '同组下id唯一',
| `message` longtext NOT NULL COMMENT '异常信息',
| `log_num` int NOT NULL DEFAULT '1' COMMENT '日志数量',
| `real_time` bigint NOT NULL DEFAULT '0' COMMENT '上报时间',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| PRIMARY KEY (`id`),
| KEY `idx_namespace_id_group_name_scene_name` (`namespace_id`,`group_name`,`unique_id`),
| KEY `idx_create_dt` (`create_dt`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='任务调度日志信息记录表';
|
| -- ----------------------------
| -- Records of sj_retry_task_log_message
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_sequence_alloc
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_sequence_alloc`;
| CREATE TABLE `sj_sequence_alloc` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `group_name` varchar(64) NOT NULL DEFAULT '' COMMENT '组名称',
| `max_id` bigint NOT NULL DEFAULT '1' COMMENT '最大id',
| `step` int NOT NULL DEFAULT '100' COMMENT '步长',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
| PRIMARY KEY (`id`),
| UNIQUE KEY `uk_namespace_id_group_name` (`namespace_id`,`group_name`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='号段模式序号ID分配表';
|
| -- ----------------------------
| -- Records of sj_sequence_alloc
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_server_node
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_server_node`;
| CREATE TABLE `sj_server_node` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `group_name` varchar(64) NOT NULL COMMENT '组名称',
| `host_id` varchar(64) NOT NULL COMMENT '主机id',
| `host_ip` varchar(64) NOT NULL COMMENT '机器ip',
| `host_port` int NOT NULL COMMENT '机器端口',
| `expire_at` datetime NOT NULL COMMENT '过期时间',
| `node_type` tinyint NOT NULL COMMENT '节点类型 1、客户端 2、是服务端',
| `ext_attrs` varchar(256) DEFAULT '' COMMENT '扩展字段',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
| PRIMARY KEY (`id`),
| UNIQUE KEY `uk_host_id_host_ip` (`host_id`,`host_ip`),
| KEY `idx_namespace_id_group_name` (`namespace_id`,`group_name`),
| KEY `idx_expire_at_node_type` (`expire_at`,`node_type`)
| ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='服务器节点';
|
| -- ----------------------------
| -- Records of sj_server_node
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_system_user
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_system_user`;
| CREATE TABLE `sj_system_user` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `username` varchar(64) NOT NULL COMMENT '账号',
| `password` varchar(128) NOT NULL COMMENT '密码',
| `role` tinyint NOT NULL DEFAULT '0' COMMENT '角色:1-普通用户、2-管理员',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
| PRIMARY KEY (`id`),
| UNIQUE KEY `uk_username` (`username`) USING BTREE
| ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统用户表';
|
| -- ----------------------------
| -- Records of sj_system_user
| -- ----------------------------
| BEGIN;
| INSERT INTO `sj_system_user` (`id`, `username`, `password`, `role`, `create_dt`, `update_dt`) VALUES (1, 'admin', '465c194afb65670f38322df087f0a9bb225cc257e43eb4ac5a0c98ef5b3173ac', 2, '2025-02-12 13:15:48', '2025-02-12 13:15:48');
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_system_user_permission
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_system_user_permission`;
| CREATE TABLE `sj_system_user_permission` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `group_name` varchar(64) NOT NULL COMMENT '组名称',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `system_user_id` bigint NOT NULL COMMENT '系统用户id',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
| PRIMARY KEY (`id`),
| UNIQUE KEY `uk_namespace_id_group_name_system_user_id` (`namespace_id`,`group_name`,`system_user_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统用户权限表';
|
| -- ----------------------------
| -- Records of sj_system_user_permission
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_workflow
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_workflow`;
| CREATE TABLE `sj_workflow` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `workflow_name` varchar(64) NOT NULL COMMENT '工作流名称',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `group_name` varchar(64) NOT NULL COMMENT '组名称',
| `workflow_status` tinyint NOT NULL DEFAULT '1' COMMENT '工作流状态 0、关闭、1、开启',
| `trigger_type` tinyint NOT NULL COMMENT '触发类型 1.CRON 表达式 2. 固定时间',
| `trigger_interval` varchar(255) NOT NULL COMMENT '间隔时长',
| `next_trigger_at` bigint NOT NULL COMMENT '下次触发时间',
| `block_strategy` tinyint NOT NULL DEFAULT '1' COMMENT '阻塞策略 1、丢弃 2、覆盖 3、并行',
| `executor_timeout` int NOT NULL DEFAULT '0' COMMENT '任务执行超时时间,单位秒',
| `description` varchar(256) NOT NULL DEFAULT '' COMMENT '描述',
| `flow_info` text COMMENT '流程信息',
| `wf_context` text COMMENT '上下文',
| `bucket_index` int NOT NULL DEFAULT '0' COMMENT 'bucket',
| `version` int NOT NULL COMMENT '版本号',
| `ext_attrs` varchar(256) DEFAULT '' COMMENT '扩展字段',
| `deleted` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除 1、删除',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
| PRIMARY KEY (`id`),
| KEY `idx_create_dt` (`create_dt`),
| KEY `idx_namespace_id_group_name` (`namespace_id`,`group_name`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='工作流';
|
| -- ----------------------------
| -- Records of sj_workflow
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_workflow_node
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_workflow_node`;
| CREATE TABLE `sj_workflow_node` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `node_name` varchar(64) NOT NULL COMMENT '节点名称',
| `group_name` varchar(64) NOT NULL COMMENT '组名称',
| `job_id` bigint NOT NULL COMMENT '任务信息id',
| `workflow_id` bigint NOT NULL COMMENT '工作流ID',
| `node_type` tinyint NOT NULL DEFAULT '1' COMMENT '1、任务节点 2、条件节点',
| `expression_type` tinyint NOT NULL DEFAULT '0' COMMENT '1、SpEl、2、Aviator 3、QL',
| `fail_strategy` tinyint NOT NULL DEFAULT '1' COMMENT '失败策略 1、跳过 2、阻塞',
| `workflow_node_status` tinyint NOT NULL DEFAULT '1' COMMENT '工作流节点状态 0、关闭、1、开启',
| `priority_level` int NOT NULL DEFAULT '1' COMMENT '优先级',
| `node_info` text COMMENT '节点信息 ',
| `version` int NOT NULL COMMENT '版本号',
| `ext_attrs` varchar(256) DEFAULT '' COMMENT '扩展字段',
| `deleted` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除 1、删除',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
| PRIMARY KEY (`id`),
| KEY `idx_create_dt` (`create_dt`),
| KEY `idx_namespace_id_group_name` (`namespace_id`,`group_name`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='工作流节点';
|
| -- ----------------------------
| -- Records of sj_workflow_node
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sj_workflow_task_batch
| -- ----------------------------
| DROP TABLE IF EXISTS `sj_workflow_task_batch`;
| CREATE TABLE `sj_workflow_task_batch` (
| `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
| `namespace_id` varchar(64) NOT NULL DEFAULT '764d604ec6fc45f68cd92514c40e9e1a' COMMENT '命名空间id',
| `group_name` varchar(64) NOT NULL COMMENT '组名称',
| `workflow_id` bigint NOT NULL COMMENT '工作流任务id',
| `task_batch_status` tinyint NOT NULL DEFAULT '0' COMMENT '任务批次状态 0、失败 1、成功',
| `operation_reason` tinyint NOT NULL DEFAULT '0' COMMENT '操作原因',
| `flow_info` text COMMENT '流程信息',
| `wf_context` text COMMENT '全局上下文',
| `execution_at` bigint NOT NULL DEFAULT '0' COMMENT '任务执行时间',
| `ext_attrs` varchar(256) DEFAULT '' COMMENT '扩展字段',
| `version` int NOT NULL DEFAULT '1' COMMENT '版本号',
| `deleted` tinyint NOT NULL DEFAULT '0' COMMENT '逻辑删除 1、删除',
| `create_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
| `update_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
| PRIMARY KEY (`id`),
| KEY `idx_job_id_task_batch_status` (`workflow_id`,`task_batch_status`),
| KEY `idx_create_dt` (`create_dt`),
| KEY `idx_namespace_id_group_name` (`namespace_id`,`group_name`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='工作流批次';
|
| -- ----------------------------
| -- Records of sj_workflow_task_batch
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_client
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_client`;
| CREATE TABLE `sys_client` (
| `id` bigint NOT NULL COMMENT 'id',
| `client_id` varchar(64) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '客户端id',
| `client_key` varchar(32) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '客户端key',
| `client_secret` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '客户端秘钥',
| `grant_type` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '授权类型',
| `device_type` varchar(32) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '设备类型',
| `active_timeout` int DEFAULT '1800' COMMENT 'token活跃超时时间',
| `timeout` int DEFAULT '604800' COMMENT 'token固定超时',
| `status` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '状态(0正常 1停用)',
| `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| PRIMARY KEY (`id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='系统授权表';
|
| -- ----------------------------
| -- Records of sys_client
| -- ----------------------------
| BEGIN;
| INSERT INTO `sys_client` (`id`, `client_id`, `client_key`, `client_secret`, `grant_type`, `device_type`, `active_timeout`, `timeout`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, 'e5cd7e4891bf95d1d19206ce24a7b32e', 'pc', 'pc123', 'password,social', 'pc', 1800, 604800, '0', '0', 103, 1, '2024-12-24 16:54:24', 1, '2024-12-24 16:54:24');
| INSERT INTO `sys_client` (`id`, `client_id`, `client_key`, `client_secret`, `grant_type`, `device_type`, `active_timeout`, `timeout`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (2, '428a8310cd442757ae699df5d894f051', 'app', 'app123', 'password,sms,social', 'android', 1800, 604800, '0', '0', 103, 1, '2024-12-24 16:54:24', 1, '2024-12-24 16:54:24');
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_config
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_config`;
| CREATE TABLE `sys_config` (
| `config_id` bigint NOT NULL COMMENT '参数主键',
| `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号',
| `config_name` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '参数名称',
| `config_key` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '参数键名',
| `config_value` varchar(500) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '参数键值',
| `config_type` char(1) COLLATE utf8mb4_general_ci DEFAULT 'N' COMMENT '系统内置(Y是 N否)',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
| PRIMARY KEY (`config_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='参数配置表';
|
| -- ----------------------------
| -- Records of sys_config
| -- ----------------------------
| BEGIN;
| INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', '主框架页-默认皮肤样式名称', 'sys.index.skinName', 'skin-blue', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow');
| INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', '用户管理-账号初始密码', 'sys.user.initPassword', '123456', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '初始化密码 123456');
| INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '深色主题theme-dark,浅色主题theme-light');
| INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '000000', '账号自助-是否开启用户注册功能', 'sys.account.registerUser', 'false', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '是否开启注册用户功能(true开启,false关闭)');
| INSERT INTO `sys_config` (`config_id`, `tenant_id`, `config_name`, `config_key`, `config_value`, `config_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (11, '000000', 'OSS预览列表资源开关', 'sys.oss.previewListResource', 'true', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, 'true:开启, false:关闭');
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_dept
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_dept`;
| CREATE TABLE `sys_dept` (
| `dept_id` bigint NOT NULL COMMENT '部门id',
| `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号',
| `parent_id` bigint DEFAULT '0' COMMENT '父部门id',
| `ancestors` varchar(500) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '祖级列表',
| `dept_name` varchar(30) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '部门名称',
| `dept_category` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '部门类别编码',
| `order_num` int DEFAULT '0' COMMENT '显示顺序',
| `leader` bigint DEFAULT NULL COMMENT '负责人',
| `phone` varchar(11) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '联系电话',
| `email` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '邮箱',
| `status` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '部门状态(0正常 1停用)',
| `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| PRIMARY KEY (`dept_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='部门表';
|
| -- ----------------------------
| -- Records of sys_dept
| -- ----------------------------
| BEGIN;
| INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (100, '000000', 0, '0', 'XXX科技', NULL, 0, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL);
| INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (101, '000000', 100, '0,100', '深圳总公司', NULL, 1, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL);
| INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (102, '000000', 100, '0,100', '长沙分公司', NULL, 2, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL);
| INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (103, '000000', 101, '0,100,101', '研发部门', NULL, 1, 1, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL);
| INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (104, '000000', 101, '0,100,101', '市场部门', NULL, 2, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL);
| INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (105, '000000', 101, '0,100,101', '测试部门', NULL, 3, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL);
| INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (106, '000000', 101, '0,100,101', '财务部门', NULL, 4, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL);
| INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (107, '000000', 101, '0,100,101', '运维部门', NULL, 5, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL);
| INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (108, '000000', 102, '0,100,102', '市场部门', NULL, 1, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL);
| INSERT INTO `sys_dept` (`dept_id`, `tenant_id`, `parent_id`, `ancestors`, `dept_name`, `dept_category`, `order_num`, `leader`, `phone`, `email`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (109, '000000', 102, '0,100,102', '财务部门', NULL, 2, NULL, '15888888888', 'xxx@qq.com', '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_dict_data
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_dict_data`;
| CREATE TABLE `sys_dict_data` (
| `dict_code` bigint NOT NULL COMMENT '字典编码',
| `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号',
| `dict_sort` int DEFAULT '0' COMMENT '字典排序',
| `dict_label` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '字典标签',
| `dict_value` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '字典键值',
| `dict_type` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '字典类型',
| `css_class` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '样式属性(其他样式扩展)',
| `list_class` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '表格回显样式',
| `is_default` char(1) COLLATE utf8mb4_general_ci DEFAULT 'N' COMMENT '是否默认(Y是 N否)',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
| PRIMARY KEY (`dict_code`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='字典数据表';
|
| -- ----------------------------
| -- Records of sys_dict_data
| -- ----------------------------
| BEGIN;
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', 1, '男', '0', 'sys_user_sex', '', '', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '性别男');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', 2, '女', '1', 'sys_user_sex', '', '', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '性别女');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', 3, '未知', '2', 'sys_user_sex', '', '', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '性别未知');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '000000', 1, '显示', '0', 'sys_show_hide', '', 'primary', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '显示菜单');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '000000', 2, '隐藏', '1', 'sys_show_hide', '', 'danger', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '隐藏菜单');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, '000000', 1, '正常', '0', 'sys_normal_disable', '', 'primary', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '正常状态');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (7, '000000', 2, '停用', '1', 'sys_normal_disable', '', 'danger', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '停用状态');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (12, '000000', 1, '是', 'Y', 'sys_yes_no', '', 'primary', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '系统默认是');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (13, '000000', 2, '否', 'N', 'sys_yes_no', '', 'danger', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '系统默认否');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (14, '000000', 1, '通知', '1', 'sys_notice_type', '', 'warning', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '通知');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (15, '000000', 2, '公告', '2', 'sys_notice_type', '', 'success', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '公告');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (16, '000000', 1, '正常', '0', 'sys_notice_status', '', 'primary', 'Y', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '正常状态');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (17, '000000', 2, '关闭', '1', 'sys_notice_status', '', 'danger', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '关闭状态');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (18, '000000', 1, '新增', '1', 'sys_oper_type', '', 'info', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '新增操作');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (19, '000000', 2, '修改', '2', 'sys_oper_type', '', 'info', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '修改操作');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (20, '000000', 3, '删除', '3', 'sys_oper_type', '', 'danger', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '删除操作');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (21, '000000', 4, '授权', '4', 'sys_oper_type', '', 'primary', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '授权操作');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (22, '000000', 5, '导出', '5', 'sys_oper_type', '', 'warning', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '导出操作');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (23, '000000', 6, '导入', '6', 'sys_oper_type', '', 'warning', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '导入操作');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (24, '000000', 7, '强退', '7', 'sys_oper_type', '', 'danger', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '强退操作');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (25, '000000', 8, '生成代码', '8', 'sys_oper_type', '', 'warning', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '生成操作');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (26, '000000', 9, '清空数据', '9', 'sys_oper_type', '', 'danger', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '清空操作');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (27, '000000', 1, '成功', '0', 'sys_common_status', '', 'primary', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '正常状态');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (28, '000000', 2, '失败', '1', 'sys_common_status', '', 'danger', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '停用状态');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (29, '000000', 99, '其他', '0', 'sys_oper_type', '', 'info', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '其他操作');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (30, '000000', 0, '密码认证', 'password', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '密码认证');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (31, '000000', 0, '短信认证', 'sms', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '短信认证');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (32, '000000', 0, '邮件认证', 'email', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '邮件认证');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (33, '000000', 0, '小程序认证', 'xcx', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '小程序认证');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (34, '000000', 0, '三方登录认证', 'social', 'sys_grant_type', 'el-check-tag', 'default', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '三方登录认证');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (35, '000000', 0, 'PC', 'pc', 'sys_device_type', '', 'default', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, 'PC');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (36, '000000', 0, '安卓', 'android', 'sys_device_type', '', 'default', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '安卓');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (37, '000000', 0, 'iOS', 'ios', 'sys_device_type', '', 'default', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, 'iOS');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (38, '000000', 0, '小程序', 'xcx', 'sys_device_type', '', 'default', 'N', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '小程序');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875775031024390146, '000000', 1, '使用', '1', 'sys_equ_status', NULL, 'success', 'N', 103, 1, '2025-01-05 13:23:12', 1, '2025-02-13 15:27:27', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875775264009588738, '000000', 0, '试用', '0', 'sys_equ_status', NULL, 'cyan', 'N', 103, 1, '2025-01-05 13:24:08', 1, '2025-01-05 13:24:22', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875775424861147138, '000000', 2, '停用', '2', 'sys_equ_status', NULL, 'danger', 'N', 103, 1, '2025-01-05 13:24:46', 1, '2025-02-13 15:33:15', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875775593254064130, '000000', 3, '报废', '3', 'sys_equ_status', NULL, 'pink', 'N', 103, 1, '2025-01-05 13:25:26', 1, '2025-02-13 15:33:19', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1880132039285956609, '000000', 1, '盘点中', '0', 'inventory_statu', NULL, 'primary', 'N', 103, 1, '2025-01-17 13:56:24', 1, '2025-01-17 13:56:24', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1880132101483290626, '000000', 1, '盘点结束', '1', 'inventory_statu', NULL, 'green', 'N', 103, 1, '2025-01-17 13:56:39', 1, '2025-01-17 13:56:39', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888050111540211713, '000000', 0, '未盘', '0', 'inventory_detail_statu', NULL, 'red', 'N', 103, 1, '2025-02-08 10:20:00', 1, '2025-02-08 10:20:00', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888050166619811842, '000000', 1, '已盘', '1', 'inventory_detail_statu', NULL, 'green', 'N', 103, 1, '2025-02-08 10:20:13', 1, '2025-02-08 10:20:13', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888852864692760577, '000000', 1, '设备故障', '1', 'repair_req_type', NULL, 'primary', 'N', 103, 1, '2025-02-10 15:29:51', 1, '2025-02-10 16:30:28', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888852995580211202, '000000', 2, '工具故障', '2', 'repair_req_type', NULL, 'cyan', 'N', 103, 1, '2025-02-10 15:30:22', 1, '2025-02-10 16:30:34', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888853150668795905, '000000', 3, '其它故障', '3', 'repair_req_type', NULL, 'pink', 'N', 103, 1, '2025-02-10 15:30:59', 1, '2025-02-10 16:30:38', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888853839524507649, '000000', 1, '一般', '1', 'repair_urgency_level', NULL, 'orange', 'N', 103, 1, '2025-02-10 15:33:43', 1, '2025-02-10 15:33:43', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888853895698821121, '000000', 2, '紧急', '2', 'repair_urgency_level', NULL, 'danger', 'N', 103, 1, '2025-02-10 15:33:57', 1, '2025-02-10 15:33:57', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888854928655233026, '000000', 0, '待接单', '0', 'repair_req_status', NULL, 'orange', 'N', 103, 1, '2025-02-10 15:38:03', 1, '2025-02-10 15:38:03', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888854996997222402, '000000', 1, '维修中', '1', 'repair_req_status', NULL, 'cyan', 'N', 103, 1, '2025-02-10 15:38:19', 1, '2025-02-10 15:38:19', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888855058393444354, '000000', 2, '已完成', '2', 'repair_req_status', NULL, 'green', 'N', 103, 1, '2025-02-10 15:38:34', 1, '2025-02-10 15:38:34', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888867365911638017, '000000', 1, '机械故障', '1', 'repair_fault_type', NULL, NULL, 'N', 103, 1, '2025-02-10 16:27:28', 1, '2025-02-10 16:27:28', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888867399784837121, '000000', 2, '电气故障', '2', 'repair_fault_type', NULL, NULL, 'N', 103, 1, '2025-02-10 16:27:36', 1, '2025-02-11 14:27:29', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888867428549373954, '000000', 3, '其它', '3', 'repair_fault_type', NULL, NULL, 'N', 103, 1, '2025-02-10 16:27:43', 1, '2025-02-10 16:27:43', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889917775964397570, '000000', 1, '台', '1', 'eims_equ_unit', NULL, NULL, 'N', 103, 1, '2025-02-13 14:01:25', 1, '2025-02-13 14:02:20', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889917821376126977, '000000', 2, '套', '2', 'eims_equ_unit', NULL, NULL, 'N', 103, 1, '2025-02-13 14:01:36', 1, '2025-02-13 14:01:36', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889917865475039234, '000000', 3, '个', '3', 'eims_equ_unit', NULL, NULL, 'N', 103, 1, '2025-02-13 14:01:47', 1, '2025-02-13 14:01:47', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889917912187002881, '000000', 4, '组', '4', 'eims_equ_unit', NULL, NULL, 'N', 103, 1, '2025-02-13 14:01:58', 1, '2025-02-13 14:01:58', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889917974040403969, '000000', 5, '面', '5', 'eims_equ_unit', NULL, NULL, 'N', 103, 1, '2025-02-13 14:02:13', 1, '2025-02-13 14:02:13', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889939534335819777, '000000', 4, '闲置', '4', 'sys_equ_status', NULL, 'orange', 'N', 103, 1, '2025-02-13 15:27:53', 1, '2025-02-13 15:31:46', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889939963207598082, '000000', 5, '新增', '5', 'sys_equ_status', NULL, 'info', 'N', 103, 1, '2025-02-13 15:29:35', 1, '2025-02-13 15:31:22', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890205043891441665, '000000', 0, '新导入', '0', 'equ_import_status', NULL, 'orange', 'N', 103, 1, '2025-02-14 09:02:55', 1, '2025-02-14 09:02:55', '设备首次导入状态,首次盘点后修改为已确认');
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890205092255961090, '000000', 1, '已确认', '1', 'equ_import_status', NULL, 'primary', 'N', 103, 1, '2025-02-14 09:03:07', 1, '2025-02-14 09:03:07', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890264658086821890, '000000', 1, '工具', '1', 'eims_fixture_type', NULL, 'primary', 'N', 103, 1, '2025-02-14 12:59:49', 1, '2025-02-14 12:59:49', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890264696800247810, '000000', 2, '治具', '2', 'eims_fixture_type', NULL, 'cyan', 'N', 103, 1, '2025-02-14 12:59:58', 1, '2025-02-14 12:59:58', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890265387820220417, '000000', 0, '正常', '0', 'eims_fixture_status', NULL, 'success', 'N', 103, 1, '2025-02-14 13:02:43', 1, '2025-02-14 13:02:43', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890265467738488833, '000000', 1, '停用', '1', 'eims_fixture_status', NULL, 'danger', 'N', 103, 1, '2025-02-14 13:03:02', 1, '2025-02-14 13:03:02', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891660585600139265, '000000', 0, '空闲', '0', 'fixture_borrow_status', NULL, 'green', 'N', 103, 1, '2025-02-18 09:26:44', 1, '2025-02-18 09:26:44', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891660664356585474, '000000', 1, '借出', '1', 'fixture_borrow_status', NULL, 'primary', 'N', 103, 1, '2025-02-18 09:27:02', 1, '2025-02-18 09:27:02', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891688804214697985, '000000', 0, '借用中', '0', 'fixture_borrow_record_status', NULL, 'primary', 'N', 103, 1, '2025-02-18 11:18:51', 1, '2025-02-18 11:18:51', NULL);
| INSERT INTO `sys_dict_data` (`dict_code`, `tenant_id`, `dict_sort`, `dict_label`, `dict_value`, `dict_type`, `css_class`, `list_class`, `is_default`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891688873827561473, '000000', 1, '已归还', '1', 'fixture_borrow_record_status', NULL, 'success', 'N', 103, 1, '2025-02-18 11:19:08', 1, '2025-02-18 11:19:08', NULL);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_dict_type
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_dict_type`;
| CREATE TABLE `sys_dict_type` (
| `dict_id` bigint NOT NULL COMMENT '字典主键',
| `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号',
| `dict_name` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '字典名称',
| `dict_type` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '字典类型',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
| PRIMARY KEY (`dict_id`),
| UNIQUE KEY `tenant_id` (`tenant_id`,`dict_type`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='字典类型表';
|
| -- ----------------------------
| -- Records of sys_dict_type
| -- ----------------------------
| BEGIN;
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', '用户性别', 'sys_user_sex', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '用户性别列表');
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', '菜单状态', 'sys_show_hide', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '菜单状态列表');
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', '系统开关', 'sys_normal_disable', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '系统开关列表');
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, '000000', '系统是否', 'sys_yes_no', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '系统是否列表');
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (7, '000000', '通知类型', 'sys_notice_type', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '通知类型列表');
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (8, '000000', '通知状态', 'sys_notice_status', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '通知状态列表');
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (9, '000000', '操作类型', 'sys_oper_type', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '操作类型列表');
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (10, '000000', '系统状态', 'sys_common_status', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '登录状态列表');
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (11, '000000', '授权类型', 'sys_grant_type', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '认证授权类型');
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (12, '000000', '设备类型', 'sys_device_type', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '客户端设备类型');
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875774501413818370, '000000', '设备状态', 'sys_equ_status', 103, 1, '2025-01-05 13:21:06', 1, '2025-01-05 13:21:06', '设备状态');
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1880131864534474754, '000000', '盘点状态', 'inventory_statu', 103, 1, '2025-01-17 13:55:42', 1, '2025-01-17 13:55:42', NULL);
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888049931893977089, '000000', '盘点明细状态', 'inventory_detail_statu', 103, 1, '2025-02-08 10:19:17', 1, '2025-02-08 10:19:17', NULL);
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888852560219844609, '000000', '报修类型', 'repair_req_type', 103, 1, '2025-02-10 15:28:38', 1, '2025-02-10 15:28:38', NULL);
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888853668375932930, '000000', '报修紧急程度', 'repair_urgency_level', 103, 1, '2025-02-10 15:33:02', 1, '2025-02-10 15:33:02', NULL);
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888854701164572673, '000000', '报修状态', 'repair_req_status', 103, 1, '2025-02-10 15:37:09', 1, '2025-02-10 15:37:09', NULL);
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888867248873779202, '000000', '故障类别', 'repair_fault_type', 103, 1, '2025-02-10 16:27:00', 1, '2025-02-10 16:27:00', NULL);
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889917574130294785, '000000', '设备单位', 'eims_equ_unit', 103, 1, '2025-02-13 14:00:37', 1, '2025-02-13 14:00:37', NULL);
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890204668207632386, '000000', '设备导入状态', 'equ_import_status', 103, 1, '2025-02-14 09:01:26', 1, '2025-02-14 09:01:26', NULL);
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890264549630509057, '000000', '工具(治具)类型', 'eims_fixture_type', 103, 1, '2025-02-14 12:59:23', 1, '2025-02-14 15:38:16', NULL);
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890265298657705985, '000000', '工具(治具)状态', 'eims_fixture_status', 103, 1, '2025-02-14 13:02:21', 1, '2025-02-18 11:16:19', '工具(治具)状态');
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891660505694453762, '000000', '工具借用状态', 'fixture_borrow_status', 103, 1, '2025-02-18 09:26:25', 1, '2025-02-18 11:16:52', '工具(治具)表-工具是否被借用状态');
| INSERT INTO `sys_dict_type` (`dict_id`, `tenant_id`, `dict_name`, `dict_type`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891688592146493442, '000000', '工具借用记录状态', 'fixture_borrow_record_status', 103, 1, '2025-02-18 11:18:01', 1, '2025-02-18 11:18:01', '工具(治具)借用记录表借用记录状态');
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_logininfor
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_logininfor`;
| CREATE TABLE `sys_logininfor` (
| `info_id` bigint NOT NULL COMMENT '访问ID',
| `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号',
| `user_name` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '用户账号',
| `client_key` varchar(32) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '客户端',
| `device_type` varchar(32) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '设备类型',
| `ipaddr` varchar(128) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '登录IP地址',
| `login_location` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '登录地点',
| `browser` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '浏览器类型',
| `os` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '操作系统',
| `status` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '登录状态(0成功 1失败)',
| `msg` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '提示消息',
| `login_time` datetime DEFAULT NULL COMMENT '访问时间',
| PRIMARY KEY (`info_id`),
| KEY `idx_sys_logininfor_s` (`status`),
| KEY `idx_sys_logininfor_lt` (`login_time`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='系统访问记录';
|
| -- ----------------------------
| -- Records of sys_logininfor
| -- ----------------------------
| BEGIN;
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871496584306393090, '000000', 'admin', 'pc', 'pc', '127.0.0.1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-24 18:02:11');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871720420837150722, '000000', 'admin', 'pc', 'pc', '127.0.0.1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 08:51:38');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871728030088941570, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 09:21:52');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871779118171279361, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 12:44:52');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871782185478377474, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 12:57:04');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871795579958841346, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2024-12-25 13:50:17');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871795588179677185, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 13:50:19');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871799438533971970, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2024-12-25 14:05:37');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871799446419263489, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 14:05:39');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871802089833222145, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 14:16:09');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871803470459686913, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Safari', 'OSX', '0', '登录成功', '2024-12-25 14:21:38');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871803564361764866, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Safari', 'OSX', '0', '退出成功', '2024-12-25 14:22:01');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871803572343525377, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Safari', 'OSX', '0', '登录成功', '2024-12-25 14:22:03');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871808583072993282, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 14:41:57');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871830107041746945, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 16:07:29');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871830410789048322, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2024-12-25 16:08:42');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871830424097574914, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 16:08:45');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871834337609699329, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 16:24:18');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871838281383727106, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 16:39:58');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871839014883610625, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 16:42:53');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871843355942113282, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 17:00:08');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871865138925719554, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 18:26:41');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871865419180724226, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 18:27:48');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871869336513859585, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 18:43:22');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871870574915670018, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Safari', 'OSX', '0', '登录成功', '2024-12-25 18:48:17');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871870751206461442, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Safari', 'OSX', '0', '登录成功', '2024-12-25 18:48:59');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871871629850234882, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Safari', 'OSX', '0', '登录成功', '2024-12-25 18:52:29');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871872021539508225, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2024-12-25 18:54:02');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871872061813215234, '000000', 'test', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 18:54:12');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871872113172467714, '000000', 'test', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2024-12-25 18:54:24');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871872123654033410, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 18:54:27');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871873279683907586, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 18:59:02');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1871873663802462210, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-25 19:00:34');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872088645924585474, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-26 09:14:50');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872095537421910017, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-26 09:42:13');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872095931027980289, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-26 09:43:46');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872150146739896321, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2024-12-26 13:19:13');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872152292516462594, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-26 13:27:44');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872162441910059009, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-26 14:08:04');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872188523409342466, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-26 15:51:42');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872441665925447681, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-27 08:37:36');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872456844469895170, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Safari', 'OSX', '0', '登录成功', '2024-12-27 09:37:55');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872501747547668482, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-27 12:36:21');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872546505187950593, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2024-12-27 15:34:12');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872546517921857538, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-27 15:34:15');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872560898298642433, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-27 16:31:23');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1872637860097392642, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-27 21:37:12');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1873532055679647746, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-30 08:50:25');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1874004918249709570, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-31 16:09:24');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1874015006662320129, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2024-12-31 16:49:30');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1874706698095353857, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-02 14:38:02');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1874714986363019265, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-02 15:10:58');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1874980690379247618, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-03 08:46:47');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875020542562897921, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-03 11:25:08');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875041180170162178, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-03 12:47:09');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875065656681271297, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-03 14:24:24');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875339319932137473, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-04 08:31:51');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875377823986778114, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-04 11:04:51');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875408553479536641, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-04 13:06:57');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875446459147751425, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-04 15:37:35');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875700063599169538, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-05 08:25:19');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875730435384905729, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Safari', 'OSX', '0', '登录成功', '2025-01-05 10:26:00');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875736833116180482, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Safari', 'OSX', '0', '登录成功', '2025-01-05 10:51:25');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875738103713468418, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Safari', 'OSX', '0', '登录成功', '2025-01-05 10:56:28');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875738933434880002, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Safari', 'OSX', '0', '登录成功', '2025-01-05 10:59:46');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875740070498111489, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Safari', 'OSX', '0', '登录成功', '2025-01-05 11:04:17');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875740173912870913, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-05 11:04:42');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875744348289732609, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-05 11:21:17');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875744640741773313, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Safari', 'OSX', '0', '登录成功', '2025-01-05 11:22:27');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875773421095325697, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-05 13:16:48');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875776779436789761, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Safari', 'OSX', '0', '登录成功', '2025-01-05 13:30:09');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875822490828255233, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'Android', '0', '登录成功', '2025-01-05 16:31:48');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1875826869010554882, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-05 16:49:11');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876069092059054082, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-06 08:51:42');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876074454032121857, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-01-06 09:13:00');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876074461728669697, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-06 09:13:02');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876104579035275265, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-06 11:12:43');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876127540245012482, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-06 12:43:57');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876139103091986433, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-06 13:29:54');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876498233021239298, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-07 13:16:57');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876540733297811457, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-07 16:05:50');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876789967737638913, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-08 08:36:12');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876808776334807042, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-08 09:50:56');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876851115061252098, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-08 12:39:11');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876869219279441921, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-08 13:51:07');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1876882638082674690, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-08 14:44:26');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1877150613083885569, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-09 08:29:17');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1877189811648188417, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-09 11:05:02');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1877217595653214209, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-09 12:55:26');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1877293797516509185, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-09 17:58:14');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1877525530943676417, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-10 09:19:04');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1877942108896378881, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-11 12:54:24');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1877977265447739393, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-11 15:14:06');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878245102627930113, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-12 08:58:23');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878284543048331266, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-12 11:35:07');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878300926553403393, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-12 12:40:13');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878329832723476482, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-12 14:35:04');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878598683336200193, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-13 08:23:23');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878607552477220866, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-13 08:58:38');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878666108677214209, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-13 12:51:19');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878712606580363265, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-13 15:56:05');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878974017067892737, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-14 09:14:50');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878975112125169666, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-14 09:19:11');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1878975622420971521, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Safari', 'OSX', '0', '登录成功', '2025-01-14 09:21:13');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879049288601083905, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-14 14:13:56');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879333269250846721, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-15 09:02:22');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879348714955689985, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-15 10:03:45');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879388172891541505, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-15 12:40:32');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879411458979483649, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-15 14:13:04');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879693747617632258, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-16 08:54:47');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879715277047173122, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-16 10:20:20');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879752935412699138, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-16 12:49:59');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879772393845919745, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-01-16 14:07:18');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1879772691259822081, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-16 14:08:29');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1880068250163240961, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-17 09:42:55');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1880125700354629633, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-17 13:31:13');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1881151813012987905, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-20 09:28:37');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1881169051237523458, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-20 10:37:07');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1881205061153497090, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-20 13:00:12');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1881237617135624194, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-01-20 15:09:34');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1887297598080798722, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-06 08:29:46');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1887306824333250562, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-06 09:06:26');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1887325321280999425, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-06 10:19:56');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1887373399446900737, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-06 13:30:59');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1887660933993271298, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-07 08:33:32');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1887731394574938113, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-07 13:13:31');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1887779447218499586, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-07 16:24:28');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888022824246681602, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-08 08:31:34');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888040195874217986, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-08 09:40:35');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888089356090753026, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-08 12:55:56');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888745621189136385, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 08:23:42');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888782603419222017, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 10:50:39');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888782654493261825, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 10:50:51');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888782843329216513, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 10:51:36');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888782853148082178, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 10:51:39');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888783125391966210, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 10:52:44');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888783149735706626, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '1', '密码输入错误1次', '2025-02-10 10:52:49');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888783179951472641, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 10:52:57');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888783301024251905, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 10:53:26');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888783307789664258, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 10:53:27');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888783513264422913, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 10:54:16');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888783530842750977, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '1', '密码输入错误1次', '2025-02-10 10:54:20');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888783545803833346, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 10:54:24');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888783811739484162, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 10:55:27');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888783826071420929, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 10:55:31');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888783900230909953, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 10:55:48');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888783960675024898, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 10:56:03');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888784098814427138, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 10:56:36');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888784103642071042, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 10:56:37');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888785041958199297, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 11:00:21');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888785064720687105, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 11:00:26');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888786526255276033, '000000', 'zhuguifei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-10 11:06:14');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888786534539026433, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 11:06:16');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888813240716976130, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 12:52:24');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1888835413988958210, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-10 14:20:30');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889106895420878849, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-11 08:19:16');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889150231234048001, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-11 11:11:28');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889185670379704322, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-11 13:32:18');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889210447869870082, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-11 15:10:45');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889470489966673921, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 08:24:04');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889503117054836738, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 10:33:43');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889537072244211714, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 12:48:39');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889578284867219458, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 15:32:24');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889582177412018177, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 15:47:52');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889582236866277377, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 15:48:07');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889585842629738498, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:02:26');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889585851626520578, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:02:28');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889586569976578049, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:05:20');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889586610174787585, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:05:29');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889586914152775682, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:06:42');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889586921929015297, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:06:44');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889587641440890881, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:09:35');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889587716141445121, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:09:53');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889588175669391361, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:11:43');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889588260230754306, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:12:03');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889594804292919298, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:38:03');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889594841718693890, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:38:12');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889596078883184642, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:43:07');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889596121618948097, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:43:17');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889596187243028481, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:43:33');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889596203558871042, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:43:37');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889596306352873473, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:44:01');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889596346337173506, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:44:11');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889598512795852801, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:52:47');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889598557645545474, '000000', 'ningcanmin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:52:58');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889598637492510722, '000000', 'ningcanmin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-12 16:53:17');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889598644996120577, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-12 16:53:19');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889837677932302337, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 08:43:09');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889840092932853762, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-13 08:52:44');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889840118975287297, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 08:52:51');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889840561323364353, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-13 08:54:36');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889840578159300610, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 08:54:40');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889840708178530305, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-13 08:55:11');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889840789548027905, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 08:55:30');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889840938651340802, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-13 08:56:06');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889840945332867074, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 08:56:08');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889841000139837442, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-13 08:56:21');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889841041705390082, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 08:56:31');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889841083115753474, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-13 08:56:40');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889841122571571201, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 08:56:50');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889841221259350018, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-13 08:57:13');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889841279501455361, '000000', 'ningcanmin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 08:57:27');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889841358341787650, '000000', 'ningcanmin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-13 08:57:46');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889841366596177921, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 08:57:48');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889855963159973890, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 09:55:48');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889903672810115073, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 13:05:23');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889940754676957185, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-13 15:32:44');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1889940760993579010, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-13 15:32:45');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1890194547142414337, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-14 08:21:13');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1890262924643893249, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-14 12:52:55');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1890298392936816641, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-14 15:13:52');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1891290283476119553, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-17 08:55:17');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1891305465921269762, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-17 09:55:36');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1891305474435706881, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-17 09:55:39');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1891343528814833666, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-17 12:26:51');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1891646807076618242, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-18 08:31:59');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1891653110457024514, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-18 08:57:01');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1891654808697159681, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-18 09:03:46');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1891657010505433089, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-18 09:12:31');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1891672018954022914, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-18 10:12:10');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1891710190471671809, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-18 12:43:50');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1891767711555129345, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-18 16:32:24');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892008716166500353, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 08:30:04');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892028023638331393, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 09:46:48');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892028051945689089, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 09:46:54');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892028754537746434, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 09:49:42');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892028761387044866, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 09:49:44');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892028831222206465, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 09:50:00');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892028863543513090, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 09:50:08');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892033222524276737, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 10:07:27');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892033230589923330, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 10:07:29');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892033597763489794, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 10:08:57');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892033625915658241, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 10:09:03');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892037521404858370, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 10:24:32');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892037556817367042, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 10:24:41');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892037634638483458, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 10:24:59');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892037649071083522, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 10:25:03');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892072080766930945, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 12:41:52');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892076939117334530, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 13:01:10');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892076952622993410, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 13:01:13');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892095313738280961, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 14:14:11');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892095343052271617, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 14:14:18');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892096447580286977, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 14:18:41');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892096454446362626, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 14:18:43');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892104826310627329, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 14:51:59');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892104849970696193, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 14:52:04');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892105061086793730, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 14:52:55');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892105090073628673, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 14:53:02');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892105143861383170, '000000', 'baoshiwei', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 14:53:15');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892105150752624642, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 14:53:16');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892105637887479810, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 14:55:12');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892105680237367298, '000000', 'sunjian', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 14:55:22');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892106204139491329, '000000', 'sunjian', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 14:57:27');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892106238050439169, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 14:57:35');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892107678978412545, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-19 15:03:19');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892107686175838209, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-19 15:03:21');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892371494026981377, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 08:31:37');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892386090565611522, '000000', 'admin', 'pc', 'pc', '192.168.2.88', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-20 09:29:37');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892386101328195585, '000000', 'admin', 'pc', 'pc', '192.168.2.88', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 09:29:40');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892394454087479298, '000000', 'admin', 'pc', 'pc', '192.168.65.1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 10:02:51');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892398982866251777, '000000', 'admin', 'pc', 'pc', '192.168.65.1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 10:20:51');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892399647927676929, '000000', 'admin', 'pc', 'pc', '192.168.2.88', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 10:23:30');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892408186905669634, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 10:57:26');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892432334516236290, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 12:33:23');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892449290356424705, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-20 13:40:45');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892449312967917569, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 13:40:51');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892449928423309313, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-20 13:43:18');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892449935956279297, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 13:43:19');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892450269072097281, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-20 13:44:39');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892450294191783937, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 13:44:45');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892450621532045314, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-20 13:46:03');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892450628934991874, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 13:46:05');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892450889753591810, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-20 13:47:07');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892450926420197377, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 13:47:16');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892451019672158210, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-20 13:47:38');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892451025758093313, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 13:47:39');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892451180494356482, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-20 13:48:16');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892451205525962754, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 13:48:22');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892451320986763266, '000000', 'zhouyuhua', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '退出成功', '2025-02-20 13:48:50');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892451329178238977, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-20 13:48:52');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1892738557552898050, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-21 08:50:12');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1893826601552715778, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-24 08:53:42');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1893856470588203009, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-24 10:52:23');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1893867935617523714, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-24 11:37:57');
| INSERT INTO `sys_logininfor` (`info_id`, `tenant_id`, `user_name`, `client_key`, `device_type`, `ipaddr`, `login_location`, `browser`, `os`, `status`, `msg`, `login_time`) VALUES (1893896786347302913, '000000', 'admin', 'pc', 'pc', '0:0:0:0:0:0:0:1', '内网IP', 'Chrome', 'OSX', '0', '登录成功', '2025-02-24 13:32:35');
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_menu
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_menu`;
| CREATE TABLE `sys_menu` (
| `menu_id` bigint NOT NULL COMMENT '菜单ID',
| `menu_name` varchar(50) COLLATE utf8mb4_general_ci NOT NULL COMMENT '菜单名称',
| `parent_id` bigint DEFAULT '0' COMMENT '父菜单ID',
| `order_num` int DEFAULT '0' COMMENT '显示顺序',
| `path` varchar(200) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '路由地址',
| `component` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '组件路径',
| `query_param` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '路由参数',
| `is_frame` int DEFAULT '1' COMMENT '是否为外链(0是 1否)',
| `is_cache` int DEFAULT '0' COMMENT '是否缓存(0缓存 1不缓存)',
| `menu_type` char(1) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '菜单类型(M目录 C菜单 F按钮)',
| `visible` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '显示状态(0显示 1隐藏)',
| `status` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '菜单状态(0正常 1停用)',
| `perms` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '权限标识',
| `icon` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '#' COMMENT '菜单图标',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '备注',
| PRIMARY KEY (`menu_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='菜单权限表';
|
| -- ----------------------------
| -- Records of sys_menu
| -- ----------------------------
| BEGIN;
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '系统管理', 0, 11, 'system', '', '', 1, 0, 'M', '0', '0', '', 'eos-icons:system-group', 103, 1, '2024-12-24 16:54:24', 1, '2025-01-04 13:31:02', '系统管理目录');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '系统监控', 0, 13, 'monitor', '', '', 1, 0, 'M', '0', '0', '', 'solar:monitor-bold-duotone', 103, 1, '2024-12-24 16:54:24', 1, '2025-01-04 13:31:13', '系统监控目录');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '系统工具', 0, 14, 'tool', '', '', 1, 0, 'M', '0', '0', '', 'mdi:tools', 103, 1, '2024-12-24 16:54:24', 1, '2025-01-04 13:31:19', '系统工具目录');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, 'PLUS官网', 0, 15, 'https://gitee.com/dromara/RuoYi-Vue-Plus', '', '', 0, 0, 'M', '0', '0', '', 'flat-color-icons:plus', 103, 1, '2024-12-24 16:54:24', 1, '2025-01-04 13:31:25', 'RuoYi-Vue-Plus官网地址');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '测试菜单', 0, 16, 'demo', '', '', 1, 0, 'M', '0', '0', '', 'devicon:vscode', 103, 1, '2024-12-24 16:54:24', 1, '2025-01-04 13:31:41', '测试菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (6, '租户管理', 0, 12, 'tenant', '', '', 1, 0, 'M', '0', '0', '', 'ic:baseline-house', 103, 1, '2024-12-24 16:54:24', 1, '2025-01-04 13:31:08', '租户管理目录');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (100, '用户管理', 1, 1, 'user', 'system/user/index', '', 1, 0, 'C', '0', '0', 'system:user:list', 'ph:user-duotone', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '用户管理菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (101, '角色管理', 1, 2, 'role', 'system/role/index', '', 1, 0, 'C', '0', '0', 'system:role:list', 'eos-icons:role-binding-outlined', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '角色管理菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (102, '菜单管理', 1, 3, 'menu', 'system/menu/index', '', 1, 0, 'C', '0', '0', 'system:menu:list', 'ic:sharp-menu', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '菜单管理菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (103, '部门管理', 1, 4, 'dept', 'system/dept/index', '', 1, 0, 'C', '0', '0', 'system:dept:list', 'mingcute:department-line', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '部门管理菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (104, '岗位管理', 1, 5, 'post', 'system/post/index', '', 1, 0, 'C', '0', '0', 'system:post:list', 'icon-park-outline:appointment', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '岗位管理菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (105, '字典管理', 1, 6, 'dict', 'system/dict/index', '', 1, 0, 'C', '0', '0', 'system:dict:list', 'fluent-mdl2:dictionary', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '字典管理菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (106, '参数设置', 1, 7, 'config', 'system/config/index', '', 1, 0, 'C', '0', '0', 'system:config:list', 'icon-park-twotone:setting-two', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '参数设置菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (107, '通知公告', 1, 8, 'notice', 'system/notice/index', '', 1, 0, 'C', '0', '0', 'system:notice:list', 'fe:notice-push', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '通知公告菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (108, '日志管理', 1, 9, 'log', '', '', 1, 0, 'M', '0', '0', '', 'material-symbols:logo-dev-outline', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '日志管理菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (109, '在线用户', 2, 1, 'online', 'monitor/online/index', '', 1, 0, 'C', '0', '0', 'monitor:online:list', 'material-symbols:generating-tokens-outline', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '在线用户菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (113, '缓存监控', 2, 5, 'cache', 'monitor/cache/index', '', 1, 0, 'C', '0', '0', 'monitor:cache:list', 'devicon:redis-wordmark', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '缓存监控菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (115, '代码生成', 3, 2, 'gen', 'tool/gen/index', '', 1, 0, 'C', '0', '0', 'tool:gen:list', 'tabler:code', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '代码生成菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (117, 'Admin监控', 2, 5, 'Admin', 'monitor/admin/index', '', 1, 0, 'C', '0', '0', 'monitor:admin:list', 'devicon:spring-wordmark', 103, 1, '2024-12-24 16:54:24', NULL, NULL, 'Admin监控菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (118, '文件管理', 1, 10, 'oss', 'system/oss/index', '', 1, 0, 'C', '0', '0', 'system:oss:list', 'solar:folder-with-files-outline', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '文件管理菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (120, '任务调度中心', 2, 6, 'snailjob', 'monitor/snailjob/index', '', 1, 0, 'C', '0', '0', 'monitor:snailjob:list', 'akar-icons:schedule', 103, 1, '2024-12-24 16:54:24', NULL, NULL, 'SnailJob控制台菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (121, '租户管理', 6, 1, 'tenant', 'system/tenant/index', '', 1, 0, 'C', '0', '0', 'system:tenant:list', 'bi:houses-fill', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '租户管理菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (122, '租户套餐管理', 6, 2, 'tenantPackage', 'system/tenantPackage/index', '', 1, 0, 'C', '0', '0', 'system:tenantPackage:list', 'bx:package', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '租户套餐管理菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (123, '客户端管理', 1, 11, 'client', 'system/client/index', '', 1, 0, 'C', '0', '0', 'system:client:list', 'simple-icons:authy', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '客户端管理菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (500, '操作日志', 108, 1, 'operlog', 'monitor/operlog/index', '', 1, 0, 'C', '0', '0', 'monitor:operlog:list', 'arcticons:one-hand-operation', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '操作日志菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (501, '登录日志', 108, 2, 'logininfor', 'monitor/logininfor/index', '', 1, 0, 'C', '0', '0', 'monitor:logininfor:list', 'streamline:interface-login-dial-pad-finger-password-dial-pad-dot-finger', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '登录日志菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1001, '用户查询', 100, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:user:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1002, '用户新增', 100, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:user:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1003, '用户修改', 100, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:user:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1004, '用户删除', 100, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:user:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1005, '用户导出', 100, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:user:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1006, '用户导入', 100, 6, '', '', '', 1, 0, 'F', '0', '0', 'system:user:import', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1007, '重置密码', 100, 7, '', '', '', 1, 0, 'F', '0', '0', 'system:user:resetPwd', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1008, '角色查询', 101, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:role:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1009, '角色新增', 101, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:role:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1010, '角色修改', 101, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:role:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1011, '角色删除', 101, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:role:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1012, '角色导出', 101, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:role:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1013, '菜单查询', 102, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1014, '菜单新增', 102, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1015, '菜单修改', 102, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1016, '菜单删除', 102, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:menu:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1017, '部门查询', 103, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1018, '部门新增', 103, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1019, '部门修改', 103, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1020, '部门删除', 103, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:dept:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1021, '岗位查询', 104, 1, '', '', '', 1, 0, 'F', '0', '0', 'system:post:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1022, '岗位新增', 104, 2, '', '', '', 1, 0, 'F', '0', '0', 'system:post:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1023, '岗位修改', 104, 3, '', '', '', 1, 0, 'F', '0', '0', 'system:post:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1024, '岗位删除', 104, 4, '', '', '', 1, 0, 'F', '0', '0', 'system:post:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1025, '岗位导出', 104, 5, '', '', '', 1, 0, 'F', '0', '0', 'system:post:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1026, '字典查询', 105, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1027, '字典新增', 105, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1028, '字典修改', 105, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1029, '字典删除', 105, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1030, '字典导出', 105, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:dict:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1031, '参数查询', 106, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1032, '参数新增', 106, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1033, '参数修改', 106, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1034, '参数删除', 106, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1035, '参数导出', 106, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:config:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1036, '公告查询', 107, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1037, '公告新增', 107, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1038, '公告修改', 107, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1039, '公告删除', 107, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:notice:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1040, '操作查询', 500, 1, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1041, '操作删除', 500, 2, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1042, '日志导出', 500, 4, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:operlog:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1043, '登录查询', 501, 1, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1044, '登录删除', 501, 2, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1045, '日志导出', 501, 3, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1046, '在线查询', 109, 1, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1047, '批量强退', 109, 2, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:batchLogout', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1048, '单条强退', 109, 3, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:online:forceLogout', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1050, '账户解锁', 501, 4, '#', '', '', 1, 0, 'F', '0', '0', 'monitor:logininfor:unlock', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1055, '生成查询', 115, 1, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1056, '生成修改', 115, 2, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1057, '生成删除', 115, 3, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1058, '导入代码', 115, 2, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:import', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1059, '预览代码', 115, 4, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:preview', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1060, '生成代码', 115, 5, '#', '', '', 1, 0, 'F', '0', '0', 'tool:gen:code', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1061, '客户端管理查询', 123, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1062, '客户端管理新增', 123, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1063, '客户端管理修改', 123, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1064, '客户端管理删除', 123, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1065, '客户端管理导出', 123, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:client:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1500, '测试单表', 5, 1, 'demo', 'demo/demo/index', '', 1, 0, 'C', '0', '0', 'demo:demo:list', 'lucide:table', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '测试单表菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1501, '测试单表查询', 1500, 1, '#', '', '', 1, 0, 'F', '0', '0', 'demo:demo:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1502, '测试单表新增', 1500, 2, '#', '', '', 1, 0, 'F', '0', '0', 'demo:demo:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1503, '测试单表修改', 1500, 3, '#', '', '', 1, 0, 'F', '0', '0', 'demo:demo:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1504, '测试单表删除', 1500, 4, '#', '', '', 1, 0, 'F', '0', '0', 'demo:demo:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1505, '测试单表导出', 1500, 5, '#', '', '', 1, 0, 'F', '0', '0', 'demo:demo:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1506, '测试树表', 5, 1, 'tree', 'demo/tree/index', '', 1, 0, 'C', '0', '0', 'demo:tree:list', 'emojione:evergreen-tree', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '测试树表菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1507, '测试树表查询', 1506, 1, '#', '', '', 1, 0, 'F', '0', '0', 'demo:tree:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1508, '测试树表新增', 1506, 2, '#', '', '', 1, 0, 'F', '0', '0', 'demo:tree:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1509, '测试树表修改', 1506, 3, '#', '', '', 1, 0, 'F', '0', '0', 'demo:tree:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1510, '测试树表删除', 1506, 4, '#', '', '', 1, 0, 'F', '0', '0', 'demo:tree:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1511, '测试树表导出', 1506, 5, '#', '', '', 1, 0, 'F', '0', '0', 'demo:tree:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1600, '文件查询', 118, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1601, '文件上传', 118, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:upload', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1602, '文件下载', 118, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:download', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1603, '文件删除', 118, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:oss:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1606, '租户查询', 121, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1607, '租户新增', 121, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1608, '租户修改', 121, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1609, '租户删除', 121, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1610, '租户导出', 121, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenant:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1611, '租户套餐查询', 122, 1, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:query', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1612, '租户套餐新增', 122, 2, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1613, '租户套餐修改', 122, 3, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1614, '租户套餐删除', 122, 4, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1615, '租户套餐导出', 122, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:tenantPackage:export', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1620, '配置列表', 118, 5, '#', '', '', 1, 0, 'F', '0', '0', 'system:ossConfig:list', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1621, '配置添加', 118, 6, '#', '', '', 1, 0, 'F', '0', '0', 'system:ossConfig:add', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1622, '配置编辑', 118, 6, '#', '', '', 1, 0, 'F', '0', '0', 'system:ossConfig:edit', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1623, '配置删除', 118, 6, '#', '', '', 1, 0, 'F', '0', '0', 'system:ossConfig:remove', '#', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875349550770728962, '设备台账', 1876074027672731650, 1, 'ledger', 'eims/equ/index', NULL, 1, 0, 'C', '0', '0', 'eims:equ:list', 'mdi:keyboard-esc', 103, 1, '2025-01-04 13:30:03', 1, '2025-01-06 10:31:18', '【设备台账】菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875349550770728963, '【设备台账】查询', 1875349550770728962, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equ:query', '#', 103, 1, '2025-01-04 13:30:03', 1, '2025-01-07 15:01:43', '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875349550770728964, '【设备台账】新增', 1875349550770728962, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equ:add', '#', 103, 1, '2025-01-04 13:30:03', 1, '2025-01-07 15:01:52', '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875349550770728965, '【设备台账】修改', 1875349550770728962, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equ:edit', '#', 103, 1, '2025-01-04 13:30:03', 1, '2025-01-07 15:01:58', '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875349550770728966, '【设备台账】删除', 1875349550770728962, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equ:remove', '#', 103, 1, '2025-01-04 13:30:03', 1, '2025-01-07 15:02:04', '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1875349550770728967, '【设备台账】导出', 1875349550770728962, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equ:export', '#', 103, 1, '2025-01-04 13:30:03', 1, '2025-01-07 15:02:10', '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1876074027672731650, '设备管理', 0, 1, 'equ', '', NULL, 1, 0, 'M', '0', '0', NULL, 'tabler:category-plus', 103, 1, '2025-01-06 09:11:19', 1, '2025-02-10 13:20:29', '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1876127568837582849, '设备类型', 1876074027672731650, 2, 'equType', 'eims/equ-type/index', NULL, 1, 0, 'C', '0', '0', 'eims:equType:list', '#', 103, 1, '2025-01-06 12:45:57', 1, '2025-01-06 13:30:31', '设备类型菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1876127568837582850, '设备类型查询', 1876127568837582849, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equType:query', '#', 103, 1, '2025-01-06 12:45:57', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1876127568837582851, '设备类型新增', 1876127568837582849, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equType:add', '#', 103, 1, '2025-01-06 12:45:57', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1876127568837582852, '设备类型修改', 1876127568837582849, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equType:edit', '#', 103, 1, '2025-01-06 12:45:57', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1876127568837582853, '设备类型删除', 1876127568837582849, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equType:remove', '#', 103, 1, '2025-01-06 12:45:57', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1876127568837582854, '设备类型导出', 1876127568837582849, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equType:export', '#', 103, 1, '2025-01-06 12:45:57', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1877195885923127297, '试产记录', 1876074027672731650, 3, 'equTrial', 'eims/equ-trial/index', NULL, 1, 0, 'C', '0', '0', 'eims:equTrial:list', '#', 103, 1, '2025-01-09 12:55:03', 1, '2025-01-09 12:56:16', '设备试产记录菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1877195885923127298, '设备试产记录查询', 1877195885923127297, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equTrial:query', '#', 103, 1, '2025-01-09 12:55:03', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1877195885923127299, '设备试产记录新增', 1877195885923127297, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equTrial:add', '#', 103, 1, '2025-01-09 12:55:03', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1877195885923127300, '设备试产记录修改', 1877195885923127297, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equTrial:edit', '#', 103, 1, '2025-01-09 12:55:03', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1877195885923127301, '设备试产记录删除', 1877195885923127297, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equTrial:remove', '#', 103, 1, '2025-01-09 12:55:03', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1877195885923127302, '设备试产记录导出', 1877195885923127297, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equTrial:export', '#', 103, 1, '2025-01-09 12:55:03', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879000339785752577, '状态变更', 1876074027672731650, 4, 'equStatu', 'eims/equ-statu/index', NULL, 1, 0, 'C', '0', '0', 'eims:equStatu:list', '#', 103, 1, '2025-01-14 11:00:03', 1, '2025-01-14 11:01:12', '设备状态记录菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879000339785752578, '设备状态记录查询', 1879000339785752577, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equStatu:query', '#', 103, 1, '2025-01-14 11:00:03', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879000339785752579, '设备状态记录新增', 1879000339785752577, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equStatu:add', '#', 103, 1, '2025-01-14 11:00:03', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879000339785752580, '设备状态记录修改', 1879000339785752577, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equStatu:edit', '#', 103, 1, '2025-01-14 11:00:03', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879000339785752581, '设备状态记录删除', 1879000339785752577, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equStatu:remove', '#', 103, 1, '2025-01-14 11:00:03', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879000339785752582, '设备状态记录导出', 1879000339785752577, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:equStatu:export', '#', 103, 1, '2025-01-14 11:00:03', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879762189070733313, '设备盘点', 1876074027672731650, 5, 'inventory', 'eims/inventory/index', NULL, 1, 0, 'C', '0', '0', 'eims:inventory:list', '#', 103, 1, '2025-01-16 13:32:02', 1, '2025-01-16 15:55:50', '盘点菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879762189070733314, '盘点查询', 1879762189070733313, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inventory:query', '#', 103, 1, '2025-01-16 13:32:02', 1, '2025-01-16 14:09:31', '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879762189070733315, '盘点新增', 1879762189070733313, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inventory:add', '#', 103, 1, '2025-01-16 13:32:02', 1, '2025-01-16 14:09:38', '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879762189070733316, '盘点修改', 1879762189070733313, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inventory:edit', '#', 103, 1, '2025-01-16 13:32:02', 1, '2025-01-16 14:09:43', '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879762189070733317, '盘点删除', 1879762189070733313, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inventory:remove', '#', 103, 1, '2025-01-16 13:32:02', 1, '2025-01-16 14:09:52', '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1879762189070733318, '盘点导出', 1879762189070733313, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:inventory:export', '#', 103, 1, '2025-01-16 13:32:02', 1, '2025-01-16 14:09:47', '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888814115854311426, '设备维修', 0, 3, 'repair', '', NULL, 1, 0, 'M', '0', '0', NULL, 'lucide:book-open-text', 103, 1, '2025-02-10 12:55:52', 1, '2025-02-14 13:07:19', '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888837193552453634, '故障报修', 1888814115854311426, 1, 'repairReq', 'eims/repair-req/index', NULL, 1, 0, 'C', '0', '0', 'eims:repairReq:list', '#', 103, 1, '2025-02-10 14:28:06', 1, '2025-02-10 14:54:39', '故障报修菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888837193552453635, '故障报修查询', 1888837193552453634, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairReq:query', '#', 103, 1, '2025-02-10 14:28:06', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888837193552453636, '故障报修新增', 1888837193552453634, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairReq:add', '#', 103, 1, '2025-02-10 14:28:06', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888837193552453637, '故障报修修改', 1888837193552453634, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairReq:edit', '#', 103, 1, '2025-02-10 14:28:06', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888837193552453638, '故障报修删除', 1888837193552453634, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairReq:remove', '#', 103, 1, '2025-02-10 14:28:06', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888837193552453639, '故障报修导出', 1888837193552453634, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:repairReq:export', '#', 103, 1, '2025-02-10 14:28:06', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889589456286871554, '用户列表', 100, 0, '', '', NULL, 1, 0, 'F', '0', '0', 'system:user:list', '#', 103, 1, '2025-02-12 16:16:48', 1, '2025-02-12 16:16:48', '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889865233922322434, '【设备台账】导入', 1875349550770728962, 6, '', '', NULL, 1, 0, 'F', '0', '0', 'eims:equ:import', '#', 103, 1, '2025-02-13 10:32:38', 1, '2025-02-13 10:32:51', '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890265974959865858, '工具台账', 1890266675786121217, 2, 'index', 'eims/fixture/index', NULL, 1, 0, 'C', '0', '0', 'eims:fixture:list', '#', 103, 1, '2025-02-14 13:06:23', 1, '2025-02-18 13:47:52', '工具(治具)台账菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890265974959865859, '工具(治具)台账查询', 1890265974959865858, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixture:query', '#', 103, 1, '2025-02-14 13:06:23', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890265974959865860, '工具(治具)台账新增', 1890265974959865858, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixture:add', '#', 103, 1, '2025-02-14 13:06:23', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890265974959865861, '工具(治具)台账修改', 1890265974959865858, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixture:edit', '#', 103, 1, '2025-02-14 13:06:23', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890265974959865862, '工具(治具)台账删除', 1890265974959865858, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixture:remove', '#', 103, 1, '2025-02-14 13:06:23', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890265974959865863, '工具(治具)台账导出', 1890265974959865858, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixture:export', '#', 103, 1, '2025-02-14 13:06:23', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1890266675786121217, '工具管理', 0, 2, 'fixtrue', '', NULL, 1, 0, 'M', '0', '0', NULL, 'carbon:model-alt', 103, 1, '2025-02-14 13:07:50', 1, '2025-02-14 13:08:39', '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891320717983477762, '工具类型', 1890266675786121217, 3, 'fixtureType', 'eims/fixture-type/index', NULL, 1, 0, 'C', '0', '0', 'eims:fixtureType:list', '#', 103, 1, '2025-02-17 10:57:12', 1, '2025-02-18 13:47:57', '工具类型菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891320717983477763, '工具类型查询', 1891320717983477762, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureType:query', '#', 103, 1, '2025-02-17 10:57:12', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891320717983477764, '工具类型新增', 1891320717983477762, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureType:add', '#', 103, 1, '2025-02-17 10:57:12', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891320717983477765, '工具类型修改', 1891320717983477762, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureType:edit', '#', 103, 1, '2025-02-17 10:57:12', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891320717983477766, '工具类型删除', 1891320717983477762, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureType:remove', '#', 103, 1, '2025-02-17 10:57:12', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891320717983477767, '工具类型导出', 1891320717983477762, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureType:export', '#', 103, 1, '2025-02-17 10:57:12', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891410873344151554, '概览', 1890266675786121217, 1, 'dashboard', 'eims/fixture/dashboard/index', NULL, 1, 0, 'C', '0', '0', 'eims:fixture:list', '#', 103, 1, '2025-02-17 16:54:28', 1, '2025-02-18 13:47:48', '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891716266575327234, '借用记录', 1890266675786121217, 4, 'fixtureBorrow', 'eims/fixture-borrow/index', NULL, 1, 0, 'C', '0', '0', 'eims:fixtureBorrow:list', '#', 103, 1, '2025-02-18 13:09:34', 1, '2025-02-19 09:44:36', '工具借用菜单');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891716266575327235, '工具借用查询', 1891716266575327234, 1, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureBorrow:query', '#', 103, 1, '2025-02-18 13:09:34', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891716266575327236, '工具借用新增', 1891716266575327234, 2, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureBorrow:add', '#', 103, 1, '2025-02-18 13:09:34', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891716266575327237, '工具借用修改', 1891716266575327234, 3, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureBorrow:edit', '#', 103, 1, '2025-02-18 13:09:34', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891716266575327238, '工具借用删除', 1891716266575327234, 4, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureBorrow:remove', '#', 103, 1, '2025-02-18 13:09:34', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891716266575327239, '工具借用导出', 1891716266575327234, 5, '#', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixtureBorrow:export', '#', 103, 1, '2025-02-18 13:09:34', NULL, NULL, '');
| INSERT INTO `sys_menu` (`menu_id`, `menu_name`, `parent_id`, `order_num`, `path`, `component`, `query_param`, `is_frame`, `is_cache`, `menu_type`, `visible`, `status`, `perms`, `icon`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892046376327188482, '工具借用', 1890265974959865858, 6, '', '', NULL, 1, 0, 'F', '0', '0', 'eims:fixture:borrow', '#', 103, 1, '2025-02-19 10:59:43', 1, '2025-02-19 10:59:43', '');
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_notice
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_notice`;
| CREATE TABLE `sys_notice` (
| `notice_id` bigint NOT NULL COMMENT '公告ID',
| `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号',
| `notice_title` varchar(50) COLLATE utf8mb4_general_ci NOT NULL COMMENT '公告标题',
| `notice_type` char(1) COLLATE utf8mb4_general_ci NOT NULL COMMENT '公告类型(1通知 2公告)',
| `notice_content` longblob COMMENT '公告内容',
| `status` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '公告状态(0正常 1关闭)',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
| PRIMARY KEY (`notice_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='通知公告表';
|
| -- ----------------------------
| -- Records of sys_notice
| -- ----------------------------
| BEGIN;
| INSERT INTO `sys_notice` (`notice_id`, `tenant_id`, `notice_title`, `notice_type`, `notice_content`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', '温馨提醒:2018-07-01 新版本发布啦', '2', 0xE696B0E78988E69CACE58685E5AEB9, '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '管理员');
| INSERT INTO `sys_notice` (`notice_id`, `tenant_id`, `notice_title`, `notice_type`, `notice_content`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', '维护通知:2018-07-01 系统凌晨维护', '1', 0xE7BBB4E68AA4E58685E5AEB9, '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '管理员');
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_oper_log
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_oper_log`;
| CREATE TABLE `sys_oper_log` (
| `oper_id` bigint NOT NULL COMMENT '日志主键',
| `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号',
| `title` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '模块标题',
| `business_type` int DEFAULT '0' COMMENT '业务类型(0其它 1新增 2修改 3删除)',
| `method` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '方法名称',
| `request_method` varchar(10) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '请求方式',
| `operator_type` int DEFAULT '0' COMMENT '操作类别(0其它 1后台用户 2手机端用户)',
| `oper_name` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '操作人员',
| `dept_name` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '部门名称',
| `oper_url` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '请求URL',
| `oper_ip` varchar(128) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '主机地址',
| `oper_location` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '操作地点',
| `oper_param` varchar(2000) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '请求参数',
| `json_result` varchar(2000) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '返回参数',
| `status` int DEFAULT '0' COMMENT '操作状态(0正常 1异常)',
| `error_msg` varchar(2000) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '错误消息',
| `oper_time` datetime DEFAULT NULL COMMENT '操作时间',
| `cost_time` bigint DEFAULT '0' COMMENT '消耗时间',
| PRIMARY KEY (`oper_id`),
| KEY `idx_sys_oper_log_bt` (`business_type`),
| KEY `idx_sys_oper_log_s` (`status`),
| KEY `idx_sys_oper_log_ot` (`oper_time`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='操作日志记录';
|
| -- ----------------------------
| -- Records of sys_oper_log
| -- ----------------------------
| BEGIN;
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1871795322491490306, '000000', '菜单管理', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":0,\"menuName\":\"首页\",\"orderNum\":1,\"path\":\"index\",\"component\":\"/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"category\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2024-12-25 13:49:16', 59);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1871795362744225794, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":103,\"createBy\":null,\"createTime\":\"2024-12-25 13:49:16\",\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1871795322273386497\",\"parentId\":0,\"menuName\":\"首页\",\"orderNum\":0,\"path\":\"index\",\"component\":\"/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"category\",\"remark\":\"\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2024-12-25 13:49:25', 19);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1871799332388720642, '000000', '菜单管理', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":\"1871795322273386497\",\"menuName\":\"测试\",\"orderNum\":1,\"path\":\"1\",\"component\":null,\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"bug\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2024-12-25 14:05:12', 18);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1871799411027726337, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":103,\"createBy\":null,\"createTime\":\"2024-12-25 14:05:12\",\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1871799332334194690\",\"parentId\":\"1871795322273386497\",\"menuName\":\"测试\",\"orderNum\":1,\"path\":\"1\",\"component\":\"/test\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"bug\",\"remark\":\"\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2024-12-25 14:05:31', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1871838117914923010, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":1,\"parentId\":0,\"menuName\":\"系统管理\",\"orderNum\":1,\"path\":\"system\",\"component\":\"\",\"queryParam\":\"\",\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"\",\"icon\":\"fluent:access-time-20-regular\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2024-12-25 16:39:19', 59);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1871838765783896065, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":1,\"parentId\":0,\"menuName\":\"系统管理\",\"orderNum\":1,\"path\":\"system\",\"component\":\"\",\"queryParam\":\"\",\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"\",\"icon\":\"eos-icons:system-group\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2024-12-25 16:41:54', 19);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1872089580725895170, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"sys_client\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2024-12-26 09:18:32', 64);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1872089588539883522, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1872089580516179970\"}', '', 0, '', '2024-12-26 09:18:34', 87);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1872096061605052418, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1871795322273386497\",\"parentId\":0,\"menuName\":\"首页\",\"orderNum\":0,\"path\":\"index\",\"component\":\"index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"category\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2024-12-26 09:44:18', 13);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875346276927713281, '000000', '用户管理', 5, 'org.dromara.system.controller.system.SysUserController.export()', 'POST', 1, 'admin', '研发部门', '/system/user/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":null,\"deptId\":null,\"userName\":null,\"nickName\":null,\"userType\":null,\"email\":null,\"phonenumber\":null,\"sex\":null,\"status\":null,\"remark\":null,\"roleIds\":null,\"postIds\":null,\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '', 0, '', '2025-01-04 08:59:29', 1480);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875349494923571201, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"sys_equipment\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-04 09:12:17', 108);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875349505996533761, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1872089580516179970\"}', '', 0, '', '2025-01-04 09:12:19', 211);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875349551072718850, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1875349494617387010\"}', '', 0, '', '2025-01-04 09:12:30', 77);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875414505142386689, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728962\",\"parentId\":0,\"menuName\":\"设备台账\",\"orderNum\":0,\"path\":\"equipment\",\"component\":\"eims/equipment/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equipment:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-04 13:30:36', 28);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875414611501547521, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":1,\"parentId\":0,\"menuName\":\"系统管理\",\"orderNum\":11,\"path\":\"system\",\"component\":\"\",\"queryParam\":\"\",\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"\",\"icon\":\"eos-icons:system-group\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-04 13:31:02', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875414636503793666, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":6,\"parentId\":0,\"menuName\":\"租户管理\",\"orderNum\":12,\"path\":\"tenant\",\"component\":\"\",\"queryParam\":\"\",\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"\",\"icon\":\"chart\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-04 13:31:08', 7);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875414660407132162, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":2,\"parentId\":0,\"menuName\":\"系统监控\",\"orderNum\":13,\"path\":\"monitor\",\"component\":\"\",\"queryParam\":\"\",\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"\",\"icon\":\"monitor\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-04 13:31:13', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875414684323053569, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":3,\"parentId\":0,\"menuName\":\"系统工具\",\"orderNum\":14,\"path\":\"tool\",\"component\":\"\",\"queryParam\":\"\",\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"\",\"icon\":\"tool\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-04 13:31:19', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875414707916013570, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":4,\"parentId\":0,\"menuName\":\"PLUS官网\",\"orderNum\":15,\"path\":\"https://gitee.com/dromara/RuoYi-Vue-Plus\",\"component\":\"\",\"queryParam\":\"\",\"isFrame\":\"0\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"\",\"icon\":\"guide\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-04 13:31:25', 6);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875414778195771393, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":5,\"parentId\":0,\"menuName\":\"测试菜单\",\"orderNum\":16,\"path\":\"demo\",\"component\":\"\",\"queryParam\":\"\",\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"\",\"icon\":\"star\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-04 13:31:41', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875414811750203393, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728962\",\"parentId\":0,\"menuName\":\"设备台账\",\"orderNum\":1,\"path\":\"equipment\",\"component\":\"eims/equipment/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equipment:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-04 13:31:49', 7);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875420340168167425, '000000', '【设备台账】', 3, 'org.dromara.eims.controller.SysEquipmentController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equipment/1000', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-04 13:53:47', 58);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875422122613149697, '000000', '【设备台账】', 3, 'org.dromara.eims.controller.SysEquipmentController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equipment/1000', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-04 14:00:52', 17);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875423644868677634, '000000', '【设备台账】', 5, 'org.dromara.eims.controller.SysEquipmentController.export()', 'POST', 1, 'admin', '研发部门', '/eims/equipment/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":null,\"assetNo\":null,\"equName\":null,\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":null,\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":null,\"tempNo\":null,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null}', '', 0, '', '2025-01-04 14:06:55', 1519);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875460571919552513, '000000', '岗位管理', 2, 'org.dromara.system.controller.system.SysPostController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/post', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"postId\":1,\"deptId\":103,\"belongDeptId\":null,\"postCode\":\"ceo\",\"postName\":\"董事长\",\"postCategory\":null,\"postSort\":1,\"status\":\"0\",\"remark\":\"\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-04 16:33:39', 24);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875463790750081025, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equipment', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"assetNo\":\"GY-10086\",\"equName\":\"1#贴片机1\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝\",\"ratedPower\":3000,\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-01 00:00:00\",\"status\":0,\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04 00:00:00\",\"trialDate\":\"2024-12-30 13:39:13\",\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":0,\"tempNo\":\"10010\",\"inventoryFlag\":0,\"inventoryDate\":null,\"serviceLife\":6}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-04 16:46:27', 27);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875463891719561218, '000000', '【设备台账】', 1, 'org.dromara.eims.controller.SysEquipmentController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equipment', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875463891686006786\",\"assetNo\":null,\"equName\":\"SMT-1\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":0,\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":0,\"tempNo\":null,\"inventoryFlag\":0,\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-04 16:46:51', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875706290181869569, '000000', '【设备台账】', 1, 'org.dromara.eims.controller.SysEquipmentController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equipment', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875706290043457538\",\"assetNo\":null,\"equName\":\"哈哈1\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":0,\"location\":null,\"deptUsed\":105,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":0,\"tempNo\":null,\"inventoryFlag\":0,\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 08:50:03', 32);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875710833443573762, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equipment', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875706290043457538\",\"assetNo\":null,\"equName\":\"哈哈1\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":0,\"location\":null,\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":0,\"tempNo\":null,\"inventoryFlag\":0,\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 09:08:06', 15);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875711980178870273, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equipment', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875706290043457538\",\"assetNo\":null,\"equName\":\"哈哈1\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":0,\"location\":null,\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":0,\"tempNo\":null,\"inventoryFlag\":0,\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 09:12:40', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875715920899444737, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equipment', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875706290043457538\",\"assetNo\":null,\"equName\":\"哈哈1\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":0,\"location\":null,\"deptUsed\":102,\"respPerson\":3,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":0,\"tempNo\":null,\"inventoryFlag\":0,\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 09:28:19', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875728296658964481, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1871795322273386497\",\"parentId\":0,\"menuName\":\"首页\",\"orderNum\":0,\"path\":\"index\",\"component\":\"index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"mdi:workflow-outline\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 10:17:30', 26);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875730271056269314, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1871795322273386497\",\"parentId\":0,\"menuName\":\"首页\",\"orderNum\":0,\"path\":\"index\",\"component\":\"index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"akar-icons:airpods\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 10:25:21', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875731591666438146, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728962\",\"parentId\":0,\"menuName\":\"设备台账\",\"orderNum\":1,\"path\":\"equipment\",\"component\":\"eims/equipment/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equipment:list\",\"icon\":\"mdi:keyboard-esc\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 10:30:36', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875737971378982914, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1871795322273386497', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":601,\"msg\":\"存在子菜单,不允许删除\",\"data\":null}', 0, '', '2025-01-05 10:55:57', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875737998381912065, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1871799332334194690', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 10:56:03', 24);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875738013057781761, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1871795322273386497', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 10:56:06', 7);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875774501476732929, '000000', '字典类型', 1, 'org.dromara.system.controller.system.SysDictTypeController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/type', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":null,\"dictName\":\"设备状态\",\"dictType\":\"sys_equ_status\",\"remark\":\"设备状态\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 13:21:06', 37);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875775031070527489, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":0,\"dictLabel\":\"入固\",\"dictValue\":\"0\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"success\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 13:23:12', 17);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875775236968910849, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":0,\"dictLabel\":\"试用\",\"dictValue\":\"0\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":500,\"msg\":\"新增字典数据\'0\'失败,字典键值已存在\",\"data\":null}', 0, '', '2025-01-05 13:24:01', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875775264055726082, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":11,\"dictLabel\":\"试用\",\"dictValue\":\"11\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 13:24:08', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875775292820262914, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1875775031024390146\",\"dictSort\":1,\"dictLabel\":\"入固\",\"dictValue\":\"1\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"success\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 13:24:15', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875775323598065665, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1875775264009588738\",\"dictSort\":0,\"dictLabel\":\"试用\",\"dictValue\":\"0\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 13:24:22', 13);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875775424894701569, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":2,\"dictLabel\":\"迁移\",\"dictValue\":\"2\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"warning\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 13:24:46', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875775593304395778, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":3,\"dictLabel\":\"报废\",\"dictValue\":\"3\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"danger\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 13:25:26', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875789723218317314, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equipment', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"assetNo\":\"GY-10086\",\"equName\":\"1#贴片机1\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝\",\"ratedPower\":3000,\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-01 00:00:00\",\"status\":2,\"location\":\"兰宝1号车间\",\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04 00:00:00\",\"trialDate\":\"2024-12-30 13:39:13\",\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":0,\"tempNo\":\"10010\",\"inventoryFlag\":0,\"inventoryDate\":null,\"serviceLife\":6}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 14:21:35', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875789912935075841, '000000', '用户管理', 2, 'org.dromara.system.controller.system.SysUserController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/user', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":3,\"deptId\":108,\"userName\":\"test\",\"nickName\":\"本部门及以下 密码666666\",\"userType\":null,\"email\":\"\",\"phonenumber\":\"\",\"sex\":\"1\",\"status\":\"0\",\"remark\":null,\"roleIds\":[3],\"postIds\":[],\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 14:22:20', 97);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875790674570248193, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equipment', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"assetNo\":\"GY-10086\",\"equName\":\"1#贴片机1\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝\",\"ratedPower\":3000,\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-01 00:00:00\",\"status\":\"1\",\"location\":\"兰宝1号车间\",\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04 00:00:00\",\"trialDate\":\"2024-12-30 13:39:13\",\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":0,\"tempNo\":\"10010\",\"inventoryFlag\":0,\"inventoryDate\":null,\"serviceLife\":6}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 14:25:22', 23);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875792888009416705, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equipment', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"assetNo\":\"GY-10086\",\"equName\":\"1#贴片机1\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝\",\"ratedPower\":\"3000\",\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-01 00:00:00\",\"status\":\"1\",\"location\":\"兰宝1号车间\",\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04 00:00:00\",\"trialDate\":\"2024-12-30 13:39:13\",\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"1\",\"tempNo\":\"10010\",\"inventoryFlag\":\"1\",\"inventoryDate\":null,\"serviceLife\":6}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 14:34:10', 16);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875795552952737794, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equipment', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875463891686006786\",\"assetNo\":null,\"equName\":\"SMT-1\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"3\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"tempNo\":null,\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 14:44:45', 23);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875799585973166082, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equipment', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"assetNo\":\"GY-10086\",\"equName\":\"1#贴片机1\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝\",\"ratedPower\":\"3000\",\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-01 00:00:00\",\"status\":\"1\",\"location\":\"兰宝1号车间\",\"deptUsed\":101,\"respPerson\":null,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04 00:00:00\",\"trialDate\":\"2024-12-30 13:39:13\",\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"1\",\"tempNo\":\"10010\",\"inventoryFlag\":\"1\",\"inventoryDate\":null,\"serviceLife\":6}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 15:00:47', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875799643082809345, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquipmentController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equipment', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875706290043457538\",\"assetNo\":null,\"equName\":\"哈哈1\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":null,\"location\":null,\"deptUsed\":108,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"tempNo\":null,\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 15:01:00', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875807178368049153, '000000', '【设备台账】', 3, 'org.dromara.eims.controller.SysEquipmentController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equipment/1875706290043457538', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 15:30:57', 48);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875807206037872642, '000000', '【设备台账】', 3, 'org.dromara.eims.controller.SysEquipmentController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equipment/1875463891686006786', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 15:31:03', 6);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875811115145977857, '000000', '【设备台账】', 5, 'org.dromara.eims.controller.SysEquipmentController.export()', 'POST', 1, 'admin', '研发部门', '/eims/equipment/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":null,\"assetNo\":null,\"equName\":null,\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":null,\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":null,\"tempNo\":null,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null}', '', 0, '', '2025-01-05 15:46:35', 1529);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875811346545729538, '000000', '用户管理', 5, 'org.dromara.system.controller.system.SysUserController.export()', 'POST', 1, 'admin', '研发部门', '/system/user/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":null,\"deptId\":null,\"userName\":null,\"nickName\":null,\"userType\":null,\"email\":null,\"phonenumber\":null,\"sex\":null,\"status\":null,\"remark\":null,\"roleIds\":null,\"postIds\":null,\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '', 0, '', '2025-01-05 15:47:31', 134);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875811877397835777, '000000', '【设备台账】', 5, 'org.dromara.eims.controller.SysEquipmentController.export()', 'POST', 1, 'admin', '研发部门', '/eims/equipment/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":null,\"assetNo\":null,\"equName\":null,\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":null,\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":null,\"tempNo\":null,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null}', '', 0, '', '2025-01-05 15:49:37', 932);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875821314565058561, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728962\",\"parentId\":0,\"menuName\":\"设备台账\",\"orderNum\":1,\"path\":\"equ\",\"component\":\"eims/equ/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equ:list\",\"icon\":\"mdi:keyboard-esc\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 16:27:07', 27);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875826586968776706, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728962\",\"parentId\":0,\"menuName\":\"设备台账\",\"orderNum\":1,\"path\":\"equipment\",\"component\":\"eims/equipment/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equipment:list\",\"icon\":\"mdi:keyboard-esc\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 16:48:04', 26);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1875827537662304258, '000000', '【设备台账】', 1, 'org.dromara.eims.controller.SysEquipmentController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equipment', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875827537628749825\",\"assetNo\":null,\"equName\":\"11\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"tempNo\":null,\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-05 16:51:51', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876074027832115202, '000000', '菜单管理', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":0,\"menuName\":\"设备管理\",\"orderNum\":1,\"path\":\"equipment\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 09:11:19', 39);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876074427251490818, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728962\",\"parentId\":\"1876074027672731650\",\"menuName\":\"设备台账\",\"orderNum\":1,\"path\":\"ledger\",\"component\":\"eims/equipment/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equipment:list\",\"icon\":\"mdi:keyboard-esc\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 09:12:54', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876084493077774338, '000000', '代码生成', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-06 09:52:53\",\"params\":{\"parentMenuId\":\"1876074027672731650\",\"popupComponent\":\"modal\"},\"tableId\":\"1875349494617387010\",\"dataName\":\"master\",\"tableName\":\"sys_equipment\",\"tableComment\":\"设备台账\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"SysEquipment\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims.equipment\",\"moduleName\":\"eims\",\"businessName\":\"equipment\",\"functionName\":\"设备台账\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-06 09:52:53\",\"columnId\":\"1875349494789353473\",\"tableId\":\"1875349494617387010\",\"columnName\":\"equ_id\",\"columnComment\":\"\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equId\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":true,\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"pk\":true,\"edit\":true,\"list\":true,\"capJavaField\":\"EquId\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-06 09:52:53\",\"columnId\":\"1875349494797742081\",\"tableId\":\"1875349494617387010\",\"columnName\":\"asset_no\",\"columnComment\":\"资产编号\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"assetNo\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":true,\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"pk\":false,\"edit\":true,\"list\":true,\"capJavaField\":\"AssetNo\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-06 09:52:53\",\"columnId\":\"1875349494797742082\",\"tableId\":\"1875349494617387010\",\"columnName\":\"equ_name\",\"columnComment\":\"设备名称\\n\",\"columnType\":\"varchar\",\"javaType\":\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 09:52:54', 61);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876086417655136257, '000000', '菜单管理', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":\"1876074027672731650\",\"menuName\":\"设备类型\",\"orderNum\":2,\"path\":\"type\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 10:00:33', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876086912515899394, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876086417617387521\",\"parentId\":\"1876074027672731650\",\"menuName\":\"设备类型\",\"orderNum\":2,\"path\":\"type\",\"component\":\"eims/equipment-type/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 10:02:31', 18);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876094082898485250, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876074027672731650\",\"parentId\":0,\"menuName\":\"设备管理\",\"orderNum\":1,\"path\":\"equ\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 10:31:00', 28);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876094158941216770, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728962\",\"parentId\":\"1876074027672731650\",\"menuName\":\"设备台账\",\"orderNum\":1,\"path\":\"ledger\",\"component\":\"eims/equ/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equ:list\",\"icon\":\"mdi:keyboard-esc\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 10:31:18', 15);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876094820915716098, '000000', '【设备台账】', 1, 'org.dromara.eims.controller.SysEquController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1876094820823441410\",\"assetNo\":null,\"equName\":\"哈哈\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"tempNo\":null,\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 10:33:56', 19);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876094833284718593, '000000', '【设备台账】', 3, 'org.dromara.eims.controller.SysEquController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equ/1876094820823441410', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 10:33:59', 25);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876094850435227650, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875827537628749825\",\"assetNo\":null,\"equName\":\"1122\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"tempNo\":null,\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 10:34:03', 35);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876104714662289410, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"sys_equ_type\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 11:13:15', 85);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876106010320543745, '000000', '代码生成', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-06 11:18:23\",\"params\":{\"treeCode\":\"type_code\",\"treeName\":\"type_name\",\"treeParentCode\":\"parent_id\",\"parentMenuId\":0,\"popupComponent\":\"drawer\"},\"tableId\":\"1876104714398048258\",\"dataName\":\"master\",\"tableName\":\"sys_equ_type\",\"tableComment\":\"设备类型\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"SysEquType\",\"tplCategory\":\"tree\",\"packageName\":\"org.dromara.eims.equ\",\"moduleName\":\"eims\",\"businessName\":\"equType\",\"functionName\":\"设备类型\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-06 11:18:23\",\"columnId\":\"1876104714481934338\",\"tableId\":\"1876104714398048258\",\"columnName\":\"equ_type_id\",\"columnComment\":\"类型id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equTypeId\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":false,\"capJavaField\":\"EquTypeId\",\"list\":true,\"pk\":true,\"edit\":true,\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-06 11:18:23\",\"columnId\":\"1876104714486128641\",\"tableId\":\"1876104714398048258\",\"columnName\":\"type_name\",\"columnComment\":\"类型名称\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"typeName\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"LIKE\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":false,\"capJavaField\":\"TypeName\",\"list\":true,\"pk\":false,\"edit\":true,\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-06 11:18:23\",\"columnId\":\"1876104714486128642\",\"tableId\":\"1876104714398048258\",\"columnName\":\"t', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 11:18:24', 47);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876127569265401858, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1876104714398048258\"}', '', 0, '', '2025-01-06 12:44:04', 116);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876128212738744321, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876127568837582849\",\"parentId\":\"1876074027672731650\",\"menuName\":\"设备类型\",\"orderNum\":1,\"path\":\"equType\",\"component\":\"eims/equType/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equType:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":500,\"msg\":\"修改菜单\'设备类型\'失败,菜单名称已存在\",\"data\":null}', 0, '', '2025-01-06 12:46:37', 7);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876128294632529921, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1876086417617387521', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 12:46:57', 20);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876128346386046977, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876127568837582849\",\"parentId\":\"1876074027672731650\",\"menuName\":\"设备类型\",\"orderNum\":2,\"path\":\"equType\",\"component\":\"eims/equType/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equType:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 12:47:09', 26);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876128439419904001, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876127568837582849\",\"parentId\":\"1876074027672731650\",\"menuName\":\"设备类型\",\"orderNum\":2,\"path\":\"equType\",\"component\":\"eims/equType/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equType:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 12:47:31', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876139257576591362, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876127568837582849\",\"parentId\":\"1876074027672731650\",\"menuName\":\"设备类型\",\"orderNum\":2,\"path\":\"equType\",\"component\":\"eims/equ-type/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equType:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 13:30:31', 32);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876146579795382274, '000000', '设备类型', 5, 'org.dromara.eims.controller.SysEquTypeController.export()', 'POST', 1, 'admin', '研发部门', '/eims/equType/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":null,\"typeName\":null,\"typeCode\":null,\"parentId\":null,\"orderNum\":null,\"menuType\":null,\"icon\":null,\"status\":null,\"remark\":null}', '', 0, '', '2025-01-06 13:59:36', 1407);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876152478559670274, '000000', '设备类型', 1, 'org.dromara.eims.controller.SysEquTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876152478484172802\",\"typeName\":null,\"typeCode\":null,\"parentId\":11,\"orderNum\":1,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:23:03', 32);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876153837568765954, '000000', '设备类型', 1, 'org.dromara.eims.controller.SysEquTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876153837229027329\",\"typeName\":\"测试1\",\"typeCode\":null,\"parentId\":0,\"orderNum\":1,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:28:27', 79);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876153868891828225, '000000', '设备类型', 2, 'org.dromara.eims.controller.SysEquTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876153837229027329\",\"typeName\":\"测试1\",\"typeCode\":null,\"parentId\":0,\"orderNum\":1,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:28:34', 13);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876153923560386562, '000000', '设备类型', 1, 'org.dromara.eims.controller.SysEquTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876153923518443522\",\"typeName\":\"测试11\",\"typeCode\":null,\"parentId\":\"1876153837229027329\",\"orderNum\":1,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:28:47', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876153952505278465, '000000', '设备类型', 3, 'org.dromara.eims.controller.SysEquTypeController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equType/1876153923518443522', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:28:54', 19);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876153981185929218, '000000', '设备类型', 1, 'org.dromara.eims.controller.SysEquTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876153981135597569\",\"typeName\":\"测试111\",\"typeCode\":null,\"parentId\":\"1876153837229027329\",\"orderNum\":1,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:29:01', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876153993689149442, '000000', '设备类型', 3, 'org.dromara.eims.controller.SysEquTypeController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equType/1876153837229027329', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:29:04', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876154047569178625, '000000', '设备类型', 1, 'org.dromara.eims.controller.SysEquTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876154047523041281\",\"typeName\":\"测试11\",\"typeCode\":null,\"parentId\":\"1876153981135597569\",\"orderNum\":111,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:29:17', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876154069245341698, '000000', '设备类型', 3, 'org.dromara.eims.controller.SysEquTypeController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equType/1876153981135597569', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:29:22', 7);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876154080121171969, '000000', '设备类型', 3, 'org.dromara.eims.controller.SysEquTypeController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equType/1876154047523041281', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:29:25', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876154142062653442, '000000', '菜单管理', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":0,\"menuName\":\"测试1\",\"orderNum\":1,\"path\":\"1\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:29:39', 13);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876154184991354882, '000000', '菜单管理', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":\"1876154142033293313\",\"menuName\":\"测试2\",\"orderNum\":2,\"path\":\"2\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:29:50', 19);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876154205606359042, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1876154142033293313', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":601,\"msg\":\"存在子菜单,不允许删除\",\"data\":null}', 0, '', '2025-01-06 14:29:55', 5);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876154246374993921, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1876154184928440322', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:30:04', 23);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876154259259895809, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1876154142033293313', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:30:07', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156502059069441, '000000', '设备类型', 1, 'org.dromara.eims.controller.SysEquTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876156501861937153\",\"typeName\":\"测试1\",\"typeCode\":\"11\",\"parentId\":0,\"orderNum\":1,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:39:02', 39);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156551119843330, '000000', '设备类型', 1, 'org.dromara.eims.controller.SysEquTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876156551069511682\",\"typeName\":\"测试子类1\",\"typeCode\":\"12\",\"parentId\":\"1876156501861937153\",\"orderNum\":2,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:39:14', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156608418230273, '000000', '设备类型', 1, 'org.dromara.eims.controller.SysEquTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876156608367898625\",\"typeName\":\"测试子类2\",\"typeCode\":\"2\",\"parentId\":\"1876156501861937153\",\"orderNum\":2,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:39:27', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156648230563841, '000000', '设备类型', 1, 'org.dromara.eims.controller.SysEquTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876156648184426498\",\"typeName\":\"测试3\",\"typeCode\":\"3\",\"parentId\":\"1876156551069511682\",\"orderNum\":3,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:39:37', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156675929747457, '000000', '设备类型', 3, 'org.dromara.eims.controller.SysEquTypeController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equType/1876156501861937153', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":601,\"msg\":\"存在子菜单,不允许删除\",\"data\":null}', 0, '', '2025-01-06 14:39:44', 20);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156693394829313, '000000', '设备类型', 3, 'org.dromara.eims.controller.SysEquTypeController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equType/1876156551069511682', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":601,\"msg\":\"存在子菜单,不允许删除\",\"data\":null}', 0, '', '2025-01-06 14:39:48', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156710931214338, '000000', '设备类型', 3, 'org.dromara.eims.controller.SysEquTypeController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equType/1876156648184426498', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:39:52', 26);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156733832114177, '000000', '设备类型', 3, 'org.dromara.eims.controller.SysEquTypeController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equType/1876156501861937153', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":601,\"msg\":\"存在子菜单,不允许删除\",\"data\":null}', 0, '', '2025-01-06 14:39:57', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156744728915970, '000000', '设备类型', 3, 'org.dromara.eims.controller.SysEquTypeController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equType/1876156608367898625', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:40:00', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876156824294862850, '000000', '设备类型', 2, 'org.dromara.eims.controller.SysEquTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876156501861937153\",\"typeName\":\"测试1\",\"typeCode\":\"11\",\"parentId\":0,\"orderNum\":1,\"menuType\":\"M\",\"icon\":null,\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 14:40:19', 15);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876204236636016641, '000000', '【设备台账】', 1, 'org.dromara.eims.controller.SysEquController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1876204236438884354\",\"equTypeId\":11,\"assetNo\":null,\"equName\":\"哈哈\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"tempNo\":null,\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 17:48:43', 43);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876205697356910594, '000000', '设备类型', 2, 'org.dromara.eims.controller.SysEquTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1876156551069511682\",\"typeName\":\"测试子类1\",\"typeCode\":\"12\",\"parentId\":\"1876156501861937153\",\"orderNum\":2,\"menuType\":\"M\",\"icon\":null,\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 17:54:31', 25);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876206025678639106, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1876204236438884354\",\"equTypeId\":3,\"assetNo\":null,\"equName\":\"哈哈\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"tempNo\":null,\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-06 17:55:49', 16);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876521587176660993, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1876204236438884354\",\"equTypeId\":31,\"assetNo\":null,\"equName\":\"哈哈\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"tempNo\":null,\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-07 14:49:45', 41);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876521615190417409, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875827537628749825\",\"equTypeId\":3,\"assetNo\":null,\"equName\":\"1122\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"tempNo\":null,\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-07 14:49:52', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876524597135040513, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728963\",\"parentId\":\"1875349550770728962\",\"menuName\":\"【设备台账】查询\",\"orderNum\":1,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equ:query\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-07 15:01:43', 21);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876524636074958850, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728964\",\"parentId\":\"1875349550770728962\",\"menuName\":\"【设备台账】新增\",\"orderNum\":2,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equ:add\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-07 15:01:52', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876524660267704322, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728965\",\"parentId\":\"1875349550770728962\",\"menuName\":\"【设备台账】修改\",\"orderNum\":3,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equ:edit\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-07 15:01:58', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876524687803310082, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728966\",\"parentId\":\"1875349550770728962\",\"menuName\":\"【设备台账】删除\",\"orderNum\":4,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equ:remove\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-07 15:02:04', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876524709890514945, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1875349550770728967\",\"parentId\":\"1875349550770728962\",\"menuName\":\"【设备台账】导出\",\"orderNum\":5,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equ:export\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-07 15:02:10', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876800106842607617, '000000', '菜单管理', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":\"1876074027672731650\",\"menuName\":\"测试\",\"orderNum\":3,\"path\":\"test\",\"component\":\"eims/test/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"1\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-08 09:16:29', 38);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876801891950968833, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876800106687418370\",\"parentId\":\"1876074027672731650\",\"menuName\":\"测试\",\"orderNum\":3,\"path\":\"test\",\"component\":\"eims/test/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-08 09:23:35', 63);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876802441148940290, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876800106687418370\",\"parentId\":\"1876074027672731650\",\"menuName\":\"测试\",\"orderNum\":3,\"path\":\"test\",\"component\":\"eims/test/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"1\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-08 09:25:46', 15);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876802697982951425, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876800106687418370\",\"parentId\":\"1875349550770728962\",\"menuName\":\"测试\",\"orderNum\":3,\"path\":\"test\",\"component\":\"eims/test/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"1\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-08 09:26:47', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876802896860069890, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876800106687418370\",\"parentId\":\"1875349550770728962\",\"menuName\":\"测试\",\"orderNum\":3,\"path\":\"test\",\"component\":\"eims/test/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-08 09:27:35', 13);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876803378139676673, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876800106687418370\",\"parentId\":\"1876074027672731650\",\"menuName\":\"测试\",\"orderNum\":3,\"path\":\"test\",\"component\":\"eims/test/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-08 09:29:29', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876804843969232898, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1876800106687418370', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-08 09:35:19', 20);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876805354164371457, '000000', '菜单管理', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":\"1876074027672731650\",\"menuName\":\"设备详情\",\"orderNum\":3,\"path\":\"detail\",\"component\":\"eims/equ-detail/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-08 09:37:20', 17);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876811923753111554, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876805354114039810\",\"parentId\":\"1876074027672731650\",\"menuName\":\"设备详情\",\"orderNum\":3,\"path\":\"detail/:equId\",\"component\":\"eims/equ-detail/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-08 10:03:27', 20);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876812630833074177, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876805354114039810\",\"parentId\":\"1876074027672731650\",\"menuName\":\"设备详情\",\"orderNum\":3,\"path\":\"detail/${equId}\",\"component\":\"eims/equ-detail/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-08 10:06:15', 15);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876813535980654593, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876805354114039810\",\"parentId\":\"1876074027672731650\",\"menuName\":\"设备详情\",\"orderNum\":3,\"path\":\"detail/:equId\",\"component\":\"eims/equ-detail/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-08 10:09:51', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1876814781248540673, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1876805354114039810', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-08 10:14:48', 21);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877155581186658305, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#贴片机1\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝\",\"ratedPower\":\"3000\",\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-01\",\"status\":\"1\",\"location\":\"兰宝1号车间\",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"1\",\"inventoryFlag\":\"1\",\"inventoryDate\":null,\"serviceLife\":6}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-09 08:49:01', 26);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877155664481341442, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#贴片机1\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝\",\"ratedPower\":\"3000\",\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-01\",\"status\":\"1\",\"location\":\"兰宝1号车间\",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"1\",\"inventoryFlag\":\"1\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":6}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-09 08:49:21', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877165636468461570, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#贴片机1\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝\",\"ratedPower\":\"3000\",\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-01\",\"status\":\"1\",\"location\":\"兰宝1号车间\",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"1\",\"inventoryFlag\":\"1\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":7}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-09 09:28:58', 20);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877166050412711938, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#贴片机1\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝1\",\"ratedPower\":\"3000\",\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-01\",\"status\":\"1\",\"location\":\"兰宝1号车间\",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"1\",\"inventoryFlag\":\"1\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":7}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-09 09:30:37', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877166283850895361, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#贴片机1\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝\",\"ratedPower\":\"3000\",\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-01\",\"status\":\"1\",\"location\":\"兰宝1号车间\",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"1\",\"inventoryFlag\":\"1\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":7}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-09 09:31:33', 16);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877166313353629698, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#贴片机1\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝\",\"ratedPower\":\"3000\",\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-01\",\"status\":\"1\",\"location\":\"兰宝1号车间\",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"1\",\"inventoryFlag\":\"1\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":6}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-09 09:31:40', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877166979992113154, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#贴片机1\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝\",\"ratedPower\":\"3000\",\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-02\",\"status\":\"0\",\"location\":\"兰宝1号车间\",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"1\",\"inventoryFlag\":\"1\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":6}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-09 09:34:19', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877168818972119042, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#贴片机1\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝\",\"ratedPower\":\"3000\",\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-02\",\"status\":\"0\",\"location\":\"兰宝1号车间\",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"0\",\"inventoryFlag\":\"1\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":6}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-09 09:41:37', 7);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877168875960127489, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#贴片机1\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝\",\"ratedPower\":\"3000\",\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-02\",\"status\":\"0\",\"location\":\"兰宝1号车间\",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":6}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-09 09:41:51', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877169564769701889, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"GY-10086\",\"equName\":\"1#贴片机1\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝\",\"ratedPower\":\"3000\",\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-02\",\"status\":\"2\",\"location\":\"兰宝1号车间\",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":6}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-09 09:44:35', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877189886831087617, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"sys_equ_trial\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-09 11:05:20', 94);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877195862355333121, '000000', '代码生成', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-09 11:29:04\",\"params\":{\"parentMenuId\":\"1876074027672731650\",\"popupComponent\":\"drawer\"},\"tableId\":\"1877189886592012289\",\"dataName\":\"master\",\"tableName\":\"sys_equ_trial\",\"tableComment\":\"设备试产记录\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"SysEquTrial\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"equTrial\",\"functionName\":\"设备试产记录\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-09 11:29:04\",\"columnId\":\"1877189886730424322\",\"tableId\":\"1877189886592012289\",\"columnName\":\"trial_id\",\"columnComment\":\"试用记录id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"trialId\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":true,\"capJavaField\":\"TrialId\",\"pk\":true,\"edit\":true,\"list\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":false},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-09 11:29:04\",\"columnId\":\"1877189886734618625\",\"tableId\":\"1877189886592012289\",\"columnName\":\"equ_id\",\"columnComment\":\"设备id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":false,\"capJavaField\":\"EquId\",\"pk\":false,\"edit\":true,\"list\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":true},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-09 11:29:04\",\"columnId\":\"1877189886734618626\",\"tableId\":\"1877189886592012289\",\"columnName\":\"trial_num\",\"columnComment\":\"试产数量\",\"columnType\":\"int\",\"javaType\":\"Long\",\"j', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-09 11:29:05', 47);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877195886686490625, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1877189886592012289\"}', '', 0, '', '2025-01-09 11:29:11', 198);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877217717132840962, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1877195885923127297\",\"parentId\":\"1876074027672731650\",\"menuName\":\"试产记录\",\"orderNum\":3,\"path\":\"equTrial\",\"component\":\"eims/equTrial/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equTrial:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-09 12:55:55', 15);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1877217802835054593, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1877195885923127297\",\"parentId\":\"1876074027672731650\",\"menuName\":\"试产记录\",\"orderNum\":3,\"path\":\"equTrial\",\"component\":\"eims/equ-trial/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equTrial:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-09 12:56:16', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878003170303811586, '000000', '设备试产记录', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11 00:00:00\",\"proGoodNum\":95,\"proGoodRate\":95,\"operatorId\":1,\"startTime\":\"2025-01-01 13:56:47\",\"endTime\":\"2025-01-02 13:56:51\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.测试bug\\n2.哈哈哈哈\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-11 16:57:02', 46);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878003202205687810, '000000', '设备试产记录', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":\"2025-01-11 00:00:00\",\"proGoodNum\":95,\"proGoodRate\":95,\"operatorId\":1,\"startTime\":\"2025-01-01 13:56:47\",\"endTime\":\"2025-01-02 13:56:51\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.测试bug\\n2.哈哈哈哈\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-11 16:57:10', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878245155115450370, '000000', '设备试产记录', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11 00:00:00\",\"proGoodNum\":95,\"proGoodRate\":95,\"operatorId\":1,\"startTime\":\"2025-01-01 13:56:47\",\"endTime\":\"2025-01-02 13:56:51\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.测试bug\\n2.哈哈哈哈\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-12 08:58:36', 101);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878267414056054785, '000000', '设备试产记录', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11 00:00:00\",\"proGoodNum\":95,\"proGoodRate\":95,\"operatorId\":1,\"startTime\":\"13:56:48\",\"endTime\":\"13:56:51\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.测试bug\\n2.哈哈哈哈\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-12 10:27:03', 24);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878267507685502978, '000000', '设备试产记录', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11 00:00:00\",\"proGoodNum\":95,\"proGoodRate\":95,\"operatorId\":1,\"startTime\":\"13:56:48\",\"endTime\":\"13:56:51\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.测试bug\\n2.哈哈哈哈\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-12 10:27:25', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878267540443017217, '000000', '设备试产记录', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11 00:00:00\",\"proGoodNum\":95,\"proGoodRate\":95,\"operatorId\":1,\"startTime\":\"13:56:48\",\"endTime\":\"13:56:52\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.测试bug\\n2.哈哈哈哈\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-12 10:27:33', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878267660123287554, '000000', '设备试产记录', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11 00:00:00\",\"proGoodNum\":95,\"proGoodRate\":95,\"operatorId\":1,\"startTime\":\"14:56:48\",\"endTime\":\"13:56:52\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.测试bug\\n2.哈哈哈哈\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-12 10:28:01', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878311101444157442, '000000', '设备试产记录', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11 00:00:00\",\"proGoodNum\":95,\"proGoodRate\":95,\"operatorDept\":100,\"operatorId\":3,\"startTime\":\"14:56:48\",\"endTime\":\"13:56:52\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.测试bug\\n2.哈哈哈哈\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-12 13:20:39', 24);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878311141206159362, '000000', '设备试产记录', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11 00:00:00\",\"proGoodNum\":95,\"proGoodRate\":95,\"operatorDept\":100,\"operatorId\":1,\"startTime\":\"14:56:48\",\"endTime\":\"13:56:52\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.测试bug\\n2.哈哈哈哈\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-12 13:20:48', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878311855470964737, '000000', '设备试产记录', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878311855408050177\",\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":\"2025-01-12\",\"proGoodNum\":100,\"proGoodRate\":100,\"operatorDept\":100,\"operatorId\":1,\"startTime\":\"00:00:00\",\"endTime\":\"01:00:00\",\"runTime\":\"04:00:00\",\"stopTime\":\"01:00:00\",\"planRunTime\":\"06:00:00\",\"debugHistory\":\"测试\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-12 13:23:38', 19);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878311958101389314, '000000', '设备试产记录', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878311958051057666\",\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":null,\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-12 13:24:03', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878311967765065729, '000000', '设备试产记录', 3, 'org.dromara.eims.controller.SysEquTrialController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equTrial/1878311958051057666', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-12 13:24:05', 21);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878311984634556418, '000000', '设备试产记录', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878311984580030466\",\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":null,\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-12 13:24:09', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878312029945622530, '000000', '设备试产记录', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878312029899485185\",\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":null,\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-12 13:24:20', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878607584723030017, '000000', '设备试产记录', 3, 'org.dromara.eims.controller.SysEquTrialController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equTrial/1878311984580030466,1878312029899485185', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-13 08:58:46', 32);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878607596630659073, '000000', '设备试产记录', 5, 'org.dromara.eims.controller.SysEquTrialController.export()', 'POST', 1, 'admin', '研发部门', '/eims/equTrial/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":null,\"equId\":null,\"trialNum\":null,\"trialDate\":null,\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '', 0, '', '2025-01-13 08:58:49', 1260);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878677321863745538, '000000', '设备试产记录', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11\",\"proGoodNum\":951,\"proGoodRate\":95,\"operatorDept\":100,\"operatorId\":1,\"startTime\":\"14:56:48\",\"endTime\":\"13:56:52\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.测试bug\\n2.哈哈哈哈\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-13 13:35:52', 21);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878677377044008961, '000000', '设备试产记录', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878311855408050177\",\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":\"2025-01-12\",\"proGoodNum\":100,\"proGoodRate\":100,\"operatorDept\":100,\"operatorId\":1,\"startTime\":\"00:00:00\",\"endTime\":\"01:00:00\",\"runTime\":\"04:00:00\",\"stopTime\":\"01:00:00\",\"planRunTime\":\"06:00:00\",\"debugHistory\":\"测试\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-13 13:36:05', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878677895615172610, '000000', '设备试产记录', 2, 'org.dromara.eims.controller.SysEquTrialController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":1,\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-11\",\"proGoodNum\":951,\"proGoodRate\":95,\"operatorDept\":100,\"operatorId\":1,\"startTime\":\"14:56:48\",\"endTime\":\"13:56:52\",\"runTime\":\"06:00:00\",\"stopTime\":\"02:00:00\",\"planRunTime\":\"07:00:00\",\"debugHistory\":\"1.测试bug\\n2.哈哈哈哈\\n3.呵呵呵\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-13 13:38:09', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878695098980847617, '000000', '设备试产记录', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878695098922127361\",\"equId\":1000,\"trialNum\":1,\"trialDate\":\"2025-01-13\",\"proGoodNum\":1,\"proGoodRate\":1,\"operatorDept\":null,\"operatorId\":null,\"startTime\":\"00:04:00\",\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-13 14:46:31', 19);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878715702979153921, '000000', '设备试产记录', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878715702941405185\",\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":\"2025-01-13\",\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-13 16:08:23', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878716769448054786, '000000', '设备试产记录', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878716769359974402\",\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":\"2025-01-01\",\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-13 16:12:37', 25);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878716793686937602, '000000', '设备试产记录', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878716793649188865\",\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-30\",\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-13 16:12:43', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878716820295602177, '000000', '设备试产记录', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878716820266242049\",\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-02\",\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-13 16:12:49', 6);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878716848296775681, '000000', '设备试产记录', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878716848254832642\",\"equId\":\"1876204236438884354\",\"trialNum\":null,\"trialDate\":\"2025-01-03\",\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-13 16:12:56', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878716874725085186, '000000', '设备试产记录', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878716874670559233\",\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":\"2025-01-16\",\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-13 16:13:02', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878716907281272833, '000000', '设备试产记录', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878716907243524098\",\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":\"2025-01-03\",\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-13 16:13:10', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878716944073707521, '000000', '设备试产记录', 1, 'org.dromara.eims.controller.SysEquTrialController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878716944031764482\",\"equId\":\"1875827537628749825\",\"trialNum\":null,\"trialDate\":\"2025-01-19\",\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-13 16:13:19', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878978689841315841, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875827537628749825\",\"equCode\":null,\"equTypeId\":3,\"assetNo\":\"1002\",\"equName\":\"1122\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-14 09:33:24', 22);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878978762536992770, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.SysEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"1001\",\"equName\":\"1#贴片机1\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝\",\"ratedPower\":\"3000\",\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-02\",\"status\":\"2\",\"location\":\"兰宝1号车间\",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":6}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-14 09:33:41', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878984898598215681, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.EimsEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1875827537628749825\",\"equCode\":\"1\",\"equTypeId\":3,\"assetNo\":\"1002\",\"equName\":\"1122\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-14 09:58:04', 22);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878988394437390337, '000000', '【设备台账】', 1, 'org.dromara.eims.controller.EimsEquController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1878988394319949826\",\"equCode\":\"10000\",\"equTypeId\":1,\"assetNo\":\"123456\",\"equName\":\"测试1\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝\",\"ratedPower\":\"3000\",\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-14\",\"status\":\"0\",\"location\":\"1号车间\",\"deptUsed\":100,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-14\",\"trialDate\":\"2025-01-14\",\"planAcceptDate\":\"2025-01-14\",\"actualAcceptDate\":\"2025-01-14\",\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":\"2025-01-14\",\"serviceLife\":10}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-14 10:11:58', 24);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878988423835267073, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.EimsEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1878988394319949826\",\"equCode\":\"10000\",\"equTypeId\":1,\"assetNo\":\"123456\",\"equName\":\"测试11\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝\",\"ratedPower\":\"3000\",\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-14\",\"status\":\"0\",\"location\":\"1号车间\",\"deptUsed\":100,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-14\",\"trialDate\":\"2025-01-14\",\"planAcceptDate\":\"2025-01-14\",\"actualAcceptDate\":\"2025-01-14\",\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":\"2025-01-14\",\"serviceLife\":10}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-14 10:12:05', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878988535894487042, '000000', '设备类型', 1, 'org.dromara.eims.controller.EimsEquTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equTypeId\":\"1878988535865126913\",\"typeName\":\"测试2\",\"typeCode\":\"12\",\"parentId\":0,\"orderNum\":10,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-14 10:12:32', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878988564168290306, '000000', '设备类型', 3, 'org.dromara.eims.controller.EimsEquTypeController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equType/1878988535865126913', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-14 10:12:38', 23);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878988619893813250, '000000', '设备试产记录', 1, 'org.dromara.eims.controller.EimsEquTrialController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1878988619851870210\",\"equId\":\"1878988394319949826\",\"trialNum\":null,\"trialDate\":null,\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-14 10:12:52', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878991383705198593, '000000', 'OSS对象存储', 1, 'org.dromara.system.controller.system.SysOssController.upload()', 'POST', 1, 'admin', '研发部门', '/resource/oss/upload', '0:0:0:0:0:0:0:1', '内网IP', '', '', 1, '判断Bucket是否存在失败,请核对配置信息:[software.amazon.awssdk.core.exception.SdkClientException: Failed to send the request: socket connection refused.]', '2025-01-14 10:23:51', 7097);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878998727885365249, '000000', '代码生成', 3, 'org.dromara.generator.controller.GenController.remove()', 'DELETE', 1, 'admin', '研发部门', '/tool/gen/1872089580516179970,1875349494617387010,1876104714398048258,1877189886592012289', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-14 10:53:01', 50);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878998754510807041, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_equ_statu\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-14 10:53:08', 105);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1878999481576628225, '000000', '代码生成', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-14 10:56:01\",\"params\":{\"parentMenuId\":\"1876074027672731650\",\"popupComponent\":\"drawer\"},\"tableId\":\"1878998754225594370\",\"dataName\":\"master\",\"tableName\":\"eims_equ_statu\",\"tableComment\":\"设备状态记录表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsEquStatu\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"equStatu\",\"functionName\":\"设备状态记录\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-14 10:56:01\",\"columnId\":\"1878998754393366529\",\"tableId\":\"1878998754225594370\",\"columnName\":\"equ_statu_id\",\"columnComment\":\"设备状态记录id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equStatuId\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":false,\"capJavaField\":\"EquStatuId\",\"pk\":true,\"edit\":true,\"list\":true,\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-14 10:56:01\",\"columnId\":\"1878998754401755138\",\"tableId\":\"1878998754225594370\",\"columnName\":\"equ_id\",\"columnComment\":\"设备id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"equId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"select\",\"dictType\":\"\",\"sort\":2,\"required\":false,\"capJavaField\":\"EquId\",\"pk\":false,\"edit\":true,\"list\":true,\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-14 10:56:01\",\"columnId\":\"1878998754405949441\",\"tableId\":\"1878998754225594370\",\"columnName\":\"before_change\",\"columnComment\":\"变更前状态\",\"columnType\":\"cha', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-14 10:56:01', 84);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879000340775608322, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1878998754225594370\"}', '', 0, '', '2025-01-14 10:59:26', 238);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879000710574809089, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1879000339785752577\",\"parentId\":\"1876074027672731650\",\"menuName\":\"状态变更\",\"orderNum\":4,\"path\":\"equStatu\",\"component\":\"eims/equStatu/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equStatu:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-14 11:00:54', 20);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879000783358566402, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1879000339785752577\",\"parentId\":\"1876074027672731650\",\"menuName\":\"状态变更\",\"orderNum\":4,\"path\":\"equStatu\",\"component\":\"eims/equ-statu/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equStatu:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-14 11:01:12', 13);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879078207744135169, '000000', '设备状态记录', 1, 'org.dromara.eims.controller.EimsEquStatuController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equStatu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equStatuId\":\"1879078207500865538\",\"equId\":\"1875827537628749825\",\"beforeChange\":\"0\",\"afterChange\":\"1\",\"changeDate\":\"2025-01-14 16:08:36\",\"changeUser\":1,\"userDept\":100,\"changeDesc\":\"1212\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-14 16:08:51', 52);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879333371721887746, '000000', '设备状态记录', 1, 'org.dromara.eims.controller.EimsEquStatuController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equStatu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equStatuId\":\"1879333371604447234\",\"equId\":\"1875827537628749825\",\"beforeChange\":\"0\",\"afterChange\":\"3\",\"changeDate\":\"2025-01-15 09:02:33\",\"changeUser\":1,\"userDept\":100,\"changeDesc\":\"测试\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-15 09:02:47', 23);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879334927879974914, '000000', '设备状态记录', 3, 'org.dromara.eims.controller.EimsEquStatuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equStatu/1879333371604447234', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-15 09:08:58', 40);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879335212543193089, '000000', '设备状态记录', 1, 'org.dromara.eims.controller.EimsEquStatuController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equStatu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equStatuId\":\"1879335212484472833\",\"equId\":1000,\"beforeChange\":\"2\",\"afterChange\":\"3\",\"changeDate\":\"2025-01-15 09:09:50\",\"changeUser\":1,\"userDept\":100,\"changeDesc\":\"测试测试\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-15 09:10:06', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879350376592134146, '000000', '设备状态记录', 1, 'org.dromara.eims.controller.EimsEquStatuController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equStatu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equStatuId\":\"1879350376495665154\",\"equId\":1000,\"beforeChange\":\"2\",\"afterChange\":\"3\",\"changeDate\":\"2025-01-15 10:10:10\",\"changeUser\":1,\"userDept\":100,\"changeDesc\":\"1212\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-15 10:10:21', 18);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879350533433937922, '000000', '设备状态记录', 1, 'org.dromara.eims.controller.EimsEquStatuController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equStatu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equStatuId\":\"1879350533371023362\",\"equId\":\"1875827537628749825\",\"beforeChange\":\"0\",\"afterChange\":\"3\",\"changeDate\":\"2025-01-15 10:10:33\",\"changeUser\":4,\"userDept\":100,\"changeDesc\":\"测试\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-15 10:10:58', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879350573875417089, '000000', '设备状态记录', 2, 'org.dromara.eims.controller.EimsEquStatuController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equStatu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equStatuId\":\"1879078207500865538\",\"equId\":\"1875827537628749825\",\"beforeChange\":\"0\",\"afterChange\":\"2\",\"changeDate\":\"2025-01-14 16:08:36\",\"changeUser\":1,\"userDept\":100,\"changeDesc\":\"1212\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-15 10:11:08', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879350632918634498, '000000', '设备状态记录', 2, 'org.dromara.eims.controller.EimsEquStatuController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equStatu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equStatuId\":\"1879350533371023362\",\"equId\":\"1875827537628749825\",\"beforeChange\":\"0\",\"afterChange\":\"1\",\"changeDate\":\"2025-01-15 10:10:33\",\"changeUser\":4,\"userDept\":100,\"changeDesc\":\"测试\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-15 10:11:22', 7);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879426478136184834, '000000', '设备状态记录', 2, 'org.dromara.eims.controller.EimsEquStatuController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equStatu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equStatuId\":\"1879335212484472833\",\"equId\":1000,\"beforeChange\":\"2\",\"afterChange\":\"3\",\"changeDate\":\"2025-01-15 09:09:50\",\"changeUser\":1,\"userDept\":100,\"changeDesc\":\"测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-15 15:12:45', 16);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879693813304627202, '000000', '设备状态记录', 3, 'org.dromara.eims.controller.EimsEquStatuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equStatu/1879350533371023362', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-16 08:55:03', 24);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879758313013743617, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_inventory\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-16 13:11:21', 112);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879759051941056513, '000000', '代码生成', 3, 'org.dromara.generator.controller.GenController.remove()', 'DELETE', 1, 'admin', '研发部门', '/tool/gen/1879758312694976513', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-16 13:14:17', 22);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879759150792413185, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_inventory\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-16 13:14:40', 70);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879759964374142977, '000000', '代码生成', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-16 13:17:54\",\"params\":{\"parentMenuId\":\"1876074027672731650\",\"popupComponent\":\"drawer\"},\"tableId\":\"1879759150687555586\",\"dataName\":\"master\",\"tableName\":\"eims_inventory\",\"tableComment\":\"盘点表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsInventory\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.equ\",\"moduleName\":\"equ\",\"businessName\":\"inventory\",\"functionName\":\"盘点\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-16 13:17:54\",\"columnId\":\"1879759150742081538\",\"tableId\":\"1879759150687555586\",\"columnName\":\"inventory_id\",\"columnComment\":\"盘点id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"inventoryId\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":true,\"pk\":true,\"edit\":true,\"list\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"query\":false,\"increment\":true,\"capJavaField\":\"InventoryId\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-16 13:17:54\",\"columnId\":\"1879759150742081539\",\"tableId\":\"1879759150687555586\",\"columnName\":\"inventory_code\",\"columnComment\":\"盘点单号\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"inventoryCode\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"LIKE\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":true,\"pk\":false,\"edit\":true,\"list\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"query\":true,\"increment\":true,\"capJavaField\":\"InventoryCode\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-01-16 13:17:54\",\"columnId\":\"1879759150746275841\",\"tableId\":\"1879759150687555586\",\"columnName\":\"inventory_name\",\"columnComment\":\"盘点名称\",\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-16 13:17:54', 37);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879762189813125122, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1879759150687555586\"}', '', 0, '', '2025-01-16 13:26:45', 194);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879772912895234050, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1879762189070733313\",\"parentId\":\"1876074027672731650\",\"menuName\":\"设备盘点\",\"orderNum\":1,\"path\":\"inventory\",\"component\":\"eims/inventory/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inventory:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-16 14:09:22', 24);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879772951130509313, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1879762189070733314\",\"parentId\":\"1879762189070733313\",\"menuName\":\"盘点查询\",\"orderNum\":1,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inventory:query\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-16 14:09:31', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879772979714691073, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1879762189070733315\",\"parentId\":\"1879762189070733313\",\"menuName\":\"盘点新增\",\"orderNum\":2,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inventory:add\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-16 14:09:38', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879773002003222529, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1879762189070733316\",\"parentId\":\"1879762189070733313\",\"menuName\":\"盘点修改\",\"orderNum\":3,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inventory:edit\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-16 14:09:43', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879773021590622209, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1879762189070733318\",\"parentId\":\"1879762189070733313\",\"menuName\":\"盘点导出\",\"orderNum\":5,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inventory:export\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-16 14:09:47', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879773040523710465, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1879762189070733317\",\"parentId\":\"1879762189070733313\",\"menuName\":\"盘点删除\",\"orderNum\":4,\"path\":\"#\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inventory:remove\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-16 14:09:52', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879799706221559810, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1879762189070733313\",\"parentId\":\"1876074027672731650\",\"menuName\":\"设备盘点\",\"orderNum\":5,\"path\":\"inventory\",\"component\":\"eims/inventory/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:inventory:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-16 15:55:50', 48);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1879806294407856130, '000000', '盘点', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1879806293967454210\",\"inventoryCode\":\"PD11111\",\"inventoryName\":\"测试1\",\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-16\",\"endDate\":\"2025-01-16\",\"status\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-16 16:22:00', 80);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1880071851472347138, '000000', '盘点', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1879806293967454210\",\"inventoryCode\":\"PD111112\",\"inventoryName\":\"测试1\",\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-16\",\"endDate\":\"2025-01-16\",\"status\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-17 09:57:14', 25);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1880131864597389313, '000000', '字典类型', 1, 'org.dromara.system.controller.system.SysDictTypeController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/type', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":null,\"dictName\":\"盘点状态\",\"dictType\":\"inventory_statu\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-17 13:55:42', 26);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1880132039369842689, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":1,\"dictLabel\":\"盘点中\",\"dictValue\":\"0\",\"dictType\":\"inventory_statu\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-17 13:56:24', 28);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1880132101525233666, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":1,\"dictLabel\":\"盘点结束\",\"dictValue\":\"1\",\"dictType\":\"inventory_statu\",\"cssClass\":null,\"listClass\":\"green\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-17 13:56:39', 45);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1881205175116931074, '000000', '盘点', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1881205174991101953\",\"inventoryCode\":\"PD11111\",\"inventoryName\":\"测试2\",\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-20\",\"endDate\":\"2025-01-20\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-01-20 13:00:40', 25);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887298054450434049, '000000', '盘点', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1879806293967454210\",\"inventoryCode\":\"PD111112\",\"inventoryName\":\"测试1\",\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-16\",\"endDate\":\"2025-01-16\",\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-06 08:31:35', 20);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887298098813587457, '000000', '盘点', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1879806293967454210\",\"inventoryCode\":\"PD111112\",\"inventoryName\":\"测试1\",\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-16\",\"endDate\":\"2025-01-16\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-06 08:31:46', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887326259886542850, '000000', '盘点', 5, 'org.dromara.eims.controller.EimsInventoryController.export()', 'POST', 1, 'admin', '研发部门', '/eims/inventory/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":null,\"inventoryCode\":null,\"inventoryName\":null,\"inventoryUser\":null,\"userDept\":null,\"startDate\":null,\"endDate\":null,\"status\":null,\"remark\":null}', '', 0, '', '2025-02-06 10:23:40', 1422);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887329735047761922, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_inventory_detail\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-06 10:37:28', 92);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887330386704191489, '000000', '代码生成', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-06 10:40:03\",\"params\":{\"parentMenuId\":\"1879762189070733313\",\"popupComponent\":\"drawer\"},\"tableId\":\"1887329734783520770\",\"dataName\":\"master\",\"tableName\":\"eims_inventory_detail\",\"tableComment\":\"盘点明细表\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsInventoryDetail\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"inventoryDetail\",\"functionName\":\"盘点明细\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-06 10:40:03\",\"columnId\":\"1887329734955487233\",\"tableId\":\"1887329734783520770\",\"columnName\":\"id\",\"columnComment\":\"\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":true,\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"list\":true,\"pk\":true,\"edit\":true,\"capJavaField\":\"Id\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-06 10:40:03\",\"columnId\":\"1887329734963875841\",\"tableId\":\"1887329734783520770\",\"columnName\":\"inventory_id\",\"columnComment\":\"盘点id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"inventoryId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":true,\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"list\":true,\"pk\":false,\"edit\":true,\"capJavaField\":\"InventoryId\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-06 10:40:03\",\"columnId\":\"1887329734963875842\",\"tableId\":\"1887329734783520770\",\"columnName\":\"equ_id\",\"columnComment\":\"设备id\",\"columnType\":\"bigint\",\"java', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-06 10:40:04', 25);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887330412079730690, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1887329734783520770\"}', '', 0, '', '2025-02-06 10:40:10', 55);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887673874620682241, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":4,\"roleName\":\"仅本人\",\"roleKey\":\"test2\",\"roleSort\":4,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[1500,1506,5,1501,1502,1503,1504,1505,1507,1508,1509,1510,1511],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 09:24:58', 107);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887677409365078018, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":4,\"roleName\":\"仅本人\",\"roleKey\":\"test2\",\"roleSort\":4,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[1500,1506,5,1501,1502,1503,1504,1505,1507,1508,1509,1510,1511],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 09:39:00', 73);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887678824338698242, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":4,\"roleName\":\"仅本人\",\"roleKey\":\"test2\",\"roleSort\":4,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[1500,1506,5,1501,1502,1503,1504,1505,1507,1508,1509,1510,1511],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 09:44:38', 42060);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887678847168294914, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":4,\"roleName\":\"仅本人\",\"roleKey\":\"test2\",\"roleSort\":4,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[1501,1502,1503,1504,1505,1507,1508,1509,1510,1511,1500,1506,5,4],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 09:44:43', 41);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887687487623393282, '000000', '盘点', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1879806293967454210\",\"inventoryCode\":\"PD111112\",\"inventoryName\":\"测试1\",\"equTypesList\":null,\"equStatusList\":null,\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-16\",\"endDate\":\"2025-01-16\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 10:19:03', 64);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887688273443024898, '000000', '盘点', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1879806293967454210\",\"inventoryCode\":\"PD111112\",\"inventoryName\":\"测试1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\"],\"equStatusList\":[\"0\",\"1\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-16\",\"endDate\":\"2025-01-16\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 10:22:11', 16);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887692077194407937, '000000', '盘点', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1879806293967454210\",\"inventoryCode\":\"PD111112\",\"inventoryName\":\"测试1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\"],\"equStatusList\":[\"0\",\"1\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-16\",\"endDate\":\"2025-01-16\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 10:37:17', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887692108244840449, '000000', '盘点', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1879806293967454210\",\"inventoryCode\":\"PD111112\",\"inventoryName\":\"测试1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\"],\"equStatusList\":[\"0\",\"1\",\"2\",\"3\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-16\",\"endDate\":\"2025-01-16\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 10:37:25', 17);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887692131019911170, '000000', '盘点', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1879806293967454210\",\"inventoryCode\":\"PD111112\",\"inventoryName\":\"测试1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\"],\"equStatusList\":[\"0\",\"1\",\"2\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-16\",\"endDate\":\"2025-01-16\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 10:37:30', 17);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887692714116247553, '000000', '盘点', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1881205174991101953\",\"inventoryCode\":\"PD11111\",\"inventoryName\":\"测试2\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\"],\"equStatusList\":null,\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-20\",\"endDate\":\"2025-01-20\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 10:39:49', 27);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887692747276414978, '000000', '盘点', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1881205174991101953\",\"inventoryCode\":\"PD11111\",\"inventoryName\":\"测试2\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\"],\"equStatusList\":[\"0\",\"1\",\"2\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-01-20\",\"endDate\":\"2025-01-20\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 10:39:57', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887694527020265474, '000000', '盘点', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887694526953156609\",\"inventoryCode\":\"PD333333\",\"inventoryName\":\"测试3\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"1\",\"2\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 10:47:02', 13);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887694978583228418, '000000', '盘点', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887694978503536641\",\"inventoryCode\":\"PD444444\",\"inventoryName\":\"测试4\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"0\",\"1\",\"2\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 10:48:49', 16);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887731565576712194, '000000', '盘点', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887731565534769154\",\"inventoryCode\":\"P1\",\"inventoryName\":\"盘点1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"32\"],\"equStatusList\":[\"2\",\"1\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 13:14:12', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887731623189671937, '000000', '盘点', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887731565534769154\",\"inventoryCode\":\"P1\",\"inventoryName\":\"盘点1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"32\",\"31\",\"3\"],\"equStatusList\":[\"2\",\"1\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 13:14:26', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887733565278253058, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.EimsEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":0,\"assetNo\":\"1001\",\"equName\":\"1#贴片机1\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝\",\"ratedPower\":\"3000\",\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-02\",\"status\":\"2\",\"location\":\"兰宝1号车间\",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":6}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 13:22:09', 39);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887733609901453313, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.EimsEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":1000,\"equCode\":\"10010\",\"equTypeId\":1,\"assetNo\":\"1001\",\"equName\":\"1#贴片机1\",\"modelNo\":\"E300\",\"madeIn\":\"上海兰宝\",\"ratedPower\":\"3000\",\"plateInfo\":\"北京小米\",\"purchaseDate\":\"2025-01-02\",\"status\":\"2\",\"location\":\"兰宝1号车间\",\"deptUsed\":101,\"respPerson\":1,\"contactPhone\":\"18597012158\",\"deployDate\":\"2025-01-04\",\"trialDate\":\"2024-12-30\",\"planAcceptDate\":\"2025-01-09\",\"actualAcceptDate\":\"2025-01-09\",\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":\"2025-01-09\",\"serviceLife\":6}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 13:22:20', 7);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887740263552380930, '000000', '盘点', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887740263086813185\",\"inventoryCode\":\"P2\",\"inventoryName\":\"盘点2\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"0\",\"1\",\"2\",\"3\"],\"inventoryUser\":4,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 13:48:46', 126);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887740498571816961, '000000', '盘点', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887740498433404929\",\"inventoryCode\":\"P3\",\"inventoryName\":\"盘点3\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"0\"],\"inventoryUser\":3,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 13:49:42', 32);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887741266808926210, '000000', '盘点', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887741266746011649\",\"inventoryCode\":\"P4\",\"inventoryName\":\"盘点4\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"1\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 13:52:45', 15);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887742268547133441, '000000', '盘点', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887741266746011649\",\"inventoryCode\":\"P4\",\"inventoryName\":\"盘点4\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"3\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 13:56:44', 21);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887742699360874498, '000000', '盘点', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887741266746011649\",\"inventoryCode\":\"P4\",\"inventoryName\":\"盘点4\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"2\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 13:58:27', 37320);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887742714691055617, '000000', '盘点', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887741266746011649\",\"inventoryCode\":\"P4\",\"inventoryName\":\"盘点4\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"2\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 13:58:30', 19);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887747169754935297, '000000', '盘点', 3, 'org.dromara.eims.controller.EimsInventoryController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/inventory/1887741266746011649', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 14:16:13', 77);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887747440316903425, '000000', '盘点', 3, 'org.dromara.eims.controller.EimsInventoryController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/inventory/1879806293967454210,1881205174991101953,1887694526953156609,1887694978503536641,1887731565534769154,1887740263086813185,1887740498433404929', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 14:17:17', 13);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887748053461233665, '000000', '盘点', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887748053364764673\",\"inventoryCode\":\"PD11111\",\"inventoryName\":\"盘点1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"0\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 14:19:43', 37);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887754967263866881, '000000', '盘点', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887748053364764673\",\"inventoryCode\":\"PD11111\",\"inventoryName\":\"盘点1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"0\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 14:47:12', 17);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1887754984632479746, '000000', '盘点', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887748053364764673\",\"inventoryCode\":\"PD11111\",\"inventoryName\":\"盘点1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"0\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-07 14:47:16', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888049932103692290, '000000', '字典类型', 1, 'org.dromara.system.controller.system.SysDictTypeController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/type', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":null,\"dictName\":\"盘点明细状态\",\"dictType\":\"inventory_detail_statu\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-08 10:19:17', 41);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888050111636680706, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":0,\"dictLabel\":\"未盘\",\"dictValue\":\"0\",\"dictType\":\"inventory_detail_statu\",\"cssClass\":null,\"listClass\":\"red\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-08 10:20:00', 33);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888050166741446658, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":1,\"dictLabel\":\"已盘\",\"dictValue\":\"1\",\"dictType\":\"inventory_detail_statu\",\"cssClass\":null,\"listClass\":\"green\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-08 10:20:13', 28);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888122712764301313, '000000', '盘点明细', 5, 'org.dromara.eims.controller.EimsInventoryDetailController.export()', 'POST', 1, 'admin', '研发部门', '/eims/inventoryDetail/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"inventoryId\":null,\"equId\":null,\"status\":null,\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '', 0, '', '2025-02-08 15:08:29', 1483);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888150196301959170, '000000', '盘点', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1888150196071272449\",\"inventoryCode\":\"PD2222\",\"inventoryName\":\"盘点2\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"0\",\"1\",\"2\",\"3\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-08\",\"endDate\":\"2025-02-08\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-08 16:57:42', 52);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888773937430368258, '000000', '【设备台账】', 1, 'org.dromara.eims.controller.EimsEquController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1888773937203875842\",\"equCode\":null,\"equTypeId\":null,\"assetNo\":null,\"equName\":null,\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"1\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":null,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:16:13', 77);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888773961228849154, '000000', '【设备台账】', 1, 'org.dromara.eims.controller.EimsEquController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1888773961174323201\",\"equCode\":null,\"equTypeId\":null,\"assetNo\":null,\"equName\":null,\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":null,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:16:19', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888775058441998338, '000000', '盘点', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887748053364764673\",\"inventoryCode\":\"PD11111\",\"inventoryName\":\"盘点1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"0\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:20:40', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888775073751207937, '000000', '盘点', 2, 'org.dromara.eims.controller.EimsInventoryController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1887748053364764673\",\"inventoryCode\":\"PD11111\",\"inventoryName\":\"盘点1\",\"equTypesList\":[\"1\",\"11\",\"2\",\"21\",\"22\",\"3\",\"31\",\"32\",\"1876156501861937153\",\"1876156551069511682\"],\"equStatusList\":[\"0\"],\"inventoryUser\":1,\"userDept\":100,\"startDate\":\"2025-02-07\",\"endDate\":\"2025-02-07\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:20:44', 7);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888779579028242433, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1887748053410902017\",\"inventoryId\":\"1887748053364764673\",\"equId\":\"1875827537628749825\",\"status\":\"0\",\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:38:38', 27);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888779801259245569, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1887748053410902017\",\"inventoryId\":\"1887748053364764673\",\"equId\":\"1875827537628749825\",\"status\":\"1\",\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:39:31', 20);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888779963448786946, '000000', '盘点明细', 3, 'org.dromara.eims.controller.EimsInventoryDetailController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/inventoryDetail/1887748053410902017', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:40:10', 41);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888782469377654786, '000000', '用户管理', 1, 'org.dromara.system.controller.system.SysUserController.add()', 'POST', 1, 'admin', '研发部门', '/system/user', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":\"1888782469222465537\",\"deptId\":100,\"userName\":\"zhuguifei\",\"nickName\":\"zhuguifei\",\"userType\":null,\"email\":null,\"phonenumber\":null,\"sex\":\"0\",\"status\":\"0\",\"remark\":null,\"roleIds\":[4],\"postIds\":[4],\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:50:07', 124);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888782576579870722, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":4,\"roleName\":\"仅本人\",\"roleKey\":\"test2\",\"roleSort\":4,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:50:33', 60);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888782714530529282, '000000', '盘点', 3, 'org.dromara.eims.controller.EimsInventoryController.remove()', 'DELETE', 1, 'zhuguifei', 'XXX科技', '/eims/inventory/1888150196071272449', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:51:06', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888783017665462274, '000000', '角色管理', 4, 'org.dromara.system.controller.system.SysRoleController.cancelAuthUser()', 'PUT', 1, 'admin', '研发部门', '/system/role/authUser/cancel', '0:0:0:0:0:0:0:1', '内网IP', '{\"userId\":\"1888782469222465537\",\"roleId\":4}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:52:18', 17);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888783073160298498, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":3,\"roleName\":\"本部门及以下\",\"roleKey\":\"test1\",\"roleSort\":3,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[1501,1502,1503,1504,1505,1507,1508,1509,1510,1511,1500,1506,5,\"1876074027672731650\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:52:31', 30);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888783105791983618, '000000', '角色管理', 4, 'org.dromara.system.controller.system.SysRoleController.selectAuthUserAll()', 'PUT', 1, 'admin', '研发部门', '/system/role/authUser/selectAll', '0:0:0:0:0:0:0:1', '内网IP', '{\"roleId\":\"3\",\"userIds\":\"1888782469222465537\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:52:39', 24);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888783481597427713, '000000', '用户管理', 2, 'org.dromara.system.controller.system.SysUserController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/user', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":\"1888782469222465537\",\"deptId\":101,\"userName\":\"zhuguifei\",\"nickName\":\"zhuguifei\",\"userType\":null,\"email\":\"\",\"phonenumber\":\"\",\"sex\":\"0\",\"status\":\"0\",\"remark\":null,\"roleIds\":[3],\"postIds\":[],\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:54:09', 45);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888783877048991745, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":3,\"roleName\":\"本部门及以下\",\"roleKey\":\"test1\",\"roleSort\":3,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[1501,1502,1503,1504,1505,1507,1508,1509,1510,1511,\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\",1500,1506,\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",5,\"1876074027672731650\",1,100,101,102,103,104,105,106,107,108,118,123,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,500,501,1600,1601,1602,1603,1620,1621,1622,1623,1061,1062,1063,1064,1065,1040,1041,1042,1043,1044,1045,1050],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 10:55:43', 48);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888788403583803393, '000000', '角色管理', 5, 'org.dromara.system.controller.system.SysRoleController.export()', 'POST', 1, 'admin', '研发部门', '/system/role/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":null,\"roleName\":null,\"roleKey\":null,\"roleSort\":null,\"dataScope\":null,\"menuCheckStrictly\":null,\"deptCheckStrictly\":null,\"status\":null,\"remark\":null,\"menuIds\":null,\"deptIds\":null,\"superAdmin\":false}', '', 0, '', '2025-02-10 11:13:42', 1315);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888814115959169026, '000000', '菜单管理', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":0,\"menuName\":\"维修保养\",\"orderNum\":2,\"path\":\"1\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 12:55:52', 37);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888814672857882626, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1888814115854311426\",\"parentId\":0,\"menuName\":\"维修保养\",\"orderNum\":2,\"path\":\"repairMaintain\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 12:58:05', 21);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888819999594602497, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876074027672731650\",\"parentId\":0,\"menuName\":\"设备管理\",\"orderNum\":1,\"path\":\"equ\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"bx:package\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 13:19:15', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888820201785221121, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876074027672731650\",\"parentId\":0,\"menuName\":\"设备管理\",\"orderNum\":1,\"path\":\"equ\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"lucide:book-open-text\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 13:20:03', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888820246190317570, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1888814115854311426\",\"parentId\":0,\"menuName\":\"维修保养\",\"orderNum\":2,\"path\":\"repairMaintain\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"lucide:book-open-text\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 13:20:14', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888820307641065474, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1876074027672731650\",\"parentId\":0,\"menuName\":\"设备管理\",\"orderNum\":1,\"path\":\"equ\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"tabler:category-plus\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 13:20:29', 19);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888820804166967297, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1888814115854311426\",\"parentId\":0,\"menuName\":\"设备维修\",\"orderNum\":2,\"path\":\"repair\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"lucide:book-open-text\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 13:22:27', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888835484650397698, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_repair_req\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:20:47', 112);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888836218615848961, '000000', '代码生成', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-10 14:23:42\",\"params\":{\"parentMenuId\":\"1888814115854311426\",\"popupComponent\":\"drawer\"},\"tableId\":\"1888835484331630593\",\"dataName\":\"master\",\"tableName\":\"eims_repair_req\",\"tableComment\":\"报修单\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsRepairReq\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"repairReq\",\"functionName\":\"报修单\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-10 14:23:42\",\"columnId\":\"1888835484528762881\",\"tableId\":\"1888835484331630593\",\"columnName\":\"id\",\"columnComment\":\"报修id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":true,\"pk\":true,\"edit\":true,\"list\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":false,\"capJavaField\":\"Id\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-10 14:23:42\",\"columnId\":\"1888835484537151490\",\"tableId\":\"1888835484331630593\",\"columnName\":\"code\",\"columnComment\":\"报修单号\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"code\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":true,\"pk\":false,\"edit\":true,\"list\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":true,\"capJavaField\":\"Code\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-10 14:23:42\",\"columnId\":\"1888835484537151491\",\"tableId\":\"1888835484331630593\",\"columnName\":\"status\",\"columnComment\":\"报修状态\",\"columnType\":\"char\",\"javaType\":\"String\",\"javaField\":\"status\",\"i', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:23:42', 42);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888836273208909825, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1888835484331630593\"}', '', 0, '', '2025-02-10 14:23:55', 189);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888836970813939713, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1888836272449740807', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:26:41', 31);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888836977881341954, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1888836272449740806', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:26:43', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888836984348958721, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1888836272449740805', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:26:45', 7);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888836990493614082, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1888836272449740803', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:26:46', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888836997036728321, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1888836272449740804', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:26:48', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888837017840476162, '000000', '菜单管理', 3, 'org.dromara.system.controller.system.SysMenuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/menu/1888836272449740802', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:26:53', 7);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888837119866920961, '000000', '代码生成', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-10 14:27:16\",\"params\":{\"parentMenuId\":\"1888814115854311426\",\"popupComponent\":\"drawer\"},\"tableId\":\"1888835484331630593\",\"dataName\":\"master\",\"tableName\":\"eims_repair_req\",\"tableComment\":\"故障报修\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsRepairReq\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"repairReq\",\"functionName\":\"故障报修\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-10 14:27:16\",\"columnId\":\"1888835484528762881\",\"tableId\":\"1888835484331630593\",\"columnName\":\"id\",\"columnComment\":\"报修id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":true,\"pk\":true,\"edit\":true,\"list\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":false,\"capJavaField\":\"Id\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-10 14:27:16\",\"columnId\":\"1888835484537151490\",\"tableId\":\"1888835484331630593\",\"columnName\":\"code\",\"columnComment\":\"报修单号\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"code\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":true,\"pk\":false,\"edit\":true,\"list\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":true,\"capJavaField\":\"Code\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-10 14:27:16\",\"columnId\":\"1888835484537151491\",\"tableId\":\"1888835484331630593\",\"columnName\":\"status\",\"columnComment\":\"报修状态\",\"columnType\":\"char\",\"javaType\":\"String\",\"javaField\":\"status\",', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:27:17', 61);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888837193846054914, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1888835484331630593\"}', '', 0, '', '2025-02-10 14:27:35', 76);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888844007144775681, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1888837193552453634\",\"parentId\":\"1888814115854311426\",\"menuName\":\"故障报修\",\"orderNum\":1,\"path\":\"repairReq\",\"component\":\"eims/repair-req/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:repairReq:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 14:54:39', 25);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888852561104842753, '000000', '字典类型', 1, 'org.dromara.system.controller.system.SysDictTypeController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/type', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":null,\"dictName\":\"报修类型\",\"dictType\":\"repair_req_type\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:28:38', 196);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888852864801812482, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":1,\"dictLabel\":\"设备\",\"dictValue\":\"1\",\"dictType\":\"repair_req_type\",\"cssClass\":null,\"listClass\":\"orange\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:29:51', 43);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888852995752177666, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":2,\"dictLabel\":\"工具\",\"dictValue\":\"2\",\"dictType\":\"repair_req_type\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:30:22', 44);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888853069957804034, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1888852995580211202\",\"dictSort\":2,\"dictLabel\":\"工具\",\"dictValue\":\"2\",\"dictType\":\"repair_req_type\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:30:40', 18);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888853101775794178, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1888852864692760577\",\"dictSort\":1,\"dictLabel\":\"设备\",\"dictValue\":\"1\",\"dictType\":\"repair_req_type\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:30:47', 16);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888853150731710465, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":3,\"dictLabel\":\"其它\",\"dictValue\":\"3\",\"dictType\":\"repair_req_type\",\"cssClass\":null,\"listClass\":\"pink\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:30:59', 18);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888853668426264577, '000000', '字典类型', 1, 'org.dromara.system.controller.system.SysDictTypeController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/type', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":null,\"dictName\":\"报修紧急程度\",\"dictType\":\"repair_urgency_level\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:33:02', 18);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888853839579033601, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":1,\"dictLabel\":\"一般\",\"dictValue\":\"1\",\"dictType\":\"repair_urgency_level\",\"cssClass\":null,\"listClass\":\"orange\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:33:43', 17);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888853895870787585, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":2,\"dictLabel\":\"紧急\",\"dictValue\":\"2\",\"dictType\":\"repair_urgency_level\",\"cssClass\":null,\"listClass\":\"danger\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:33:57', 37);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888854701252653057, '000000', '字典类型', 1, 'org.dromara.system.controller.system.SysDictTypeController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/type', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":null,\"dictName\":\"报修状态\",\"dictType\":\"repair_req_status\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:37:09', 25);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888854928713953281, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":0,\"dictLabel\":\"待接单\",\"dictValue\":\"0\",\"dictType\":\"repair_req_status\",\"cssClass\":null,\"listClass\":\"orange\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:38:03', 16);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888854997043359746, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":1,\"dictLabel\":\"维修中\",\"dictValue\":\"1\",\"dictType\":\"repair_req_status\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:38:19', 16);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888855058531856386, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":2,\"dictLabel\":\"已完成\",\"dictValue\":\"2\",\"dictType\":\"repair_req_status\",\"cssClass\":null,\"listClass\":\"green\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 15:38:34', 38);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888867248940888065, '000000', '字典类型', 1, 'org.dromara.system.controller.system.SysDictTypeController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/type', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":null,\"dictName\":\"故障类别\",\"dictType\":\"repair_fault_type\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:27:00', 18);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888867365949386754, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":1,\"dictLabel\":\"机械故障\",\"dictValue\":\"1\",\"dictType\":\"repair_fault_type\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:27:28', 18);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888867399830974466, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":2,\"dictLabel\":\"电器故障\",\"dictValue\":\"2\",\"dictType\":\"repair_fault_type\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:27:36', 39);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888867428599705602, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":3,\"dictLabel\":\"其它\",\"dictValue\":\"3\",\"dictType\":\"repair_fault_type\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:27:43', 16);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888867722955960321, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1888867722909822977\",\"code\":\"1212\",\"status\":\"0\",\"occTime\":\"2025-02-10 16:28:42\",\"reqTime\":\"2025-02-10 16:28:41\",\"reqDept\":100,\"reqUser\":\"1888782469222465537\",\"reqDesc\":\"1212\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:28:53', 26);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888867810533027842, '000000', '字典类型', 9, 'org.dromara.system.controller.system.SysDictTypeController.refreshCache()', 'DELETE', 1, 'admin', '研发部门', '/system/dict/type/refreshCache', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:29:14', 15);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888867814031077377, '000000', '字典类型', 9, 'org.dromara.system.controller.system.SysDictTypeController.refreshCache()', 'DELETE', 1, 'admin', '研发部门', '/system/dict/type/refreshCache', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:29:15', 1);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888868122371141634, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1888852864692760577\",\"dictSort\":1,\"dictLabel\":\"设备故障\",\"dictValue\":\"1\",\"dictType\":\"repair_req_type\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:30:29', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888868143497850882, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1888852995580211202\",\"dictSort\":2,\"dictLabel\":\"工具故障\",\"dictValue\":\"2\",\"dictType\":\"repair_req_type\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:30:34', 13);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1888868162514825218, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1888853150668795905\",\"dictSort\":3,\"dictLabel\":\"其它故障\",\"dictValue\":\"3\",\"dictType\":\"repair_req_type\",\"cssClass\":null,\"listClass\":\"pink\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-10 16:30:38', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889140637447319553, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":\"647e3ae18a58477f81d69ab865fb12f5\",\"status\":\"0\",\"occTime\":\"2025-02-11 10:33:07\",\"reqTime\":\"2025-02-11 10:33:05\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"1212\",\"urgencyLevel\":\"2\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"2\",\"remark\":null}', '', 1, '\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'code\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsRepairReqMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairReqMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_req ( id, code, status, occ_time, req_time, req_dept, req_user, req_desc, urgency_level, req_type, fault_type, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'code\' at row 1\n; Data truncation: Data too long for column \'code\' at row 1', '2025-02-11 10:33:21', 287);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889193135896870913, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889193135716515841\",\"code\":\"WXD202502110001\",\"status\":\"0\",\"occTime\":\"2025-02-11 14:01:38\",\"reqTime\":\"2025-02-11 14:01:32\",\"reqDept\":100,\"reqUser\":\"1888782469222465537\",\"reqDesc\":\"故障\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-11 14:01:58', 37);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889193482153443330, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889193482098917378\",\"code\":\"WXD202502110001\",\"status\":\"1\",\"occTime\":\"2025-02-11 14:03:06\",\"reqTime\":\"2025-02-11 14:03:04\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"急不急\",\"urgencyLevel\":\"2\",\"faultPicture\":null,\"reqType\":\"3\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"2\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-11 14:03:20', 13);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889194017426325506, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":\"WXD202502110001\",\"status\":\"0\",\"occTime\":\"2025-02-11 14:05:18\",\"reqTime\":\"2025-02-11 14:05:17\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"qwdsdf\",\"urgencyLevel\":\"2\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"3\",\"remark\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairReqMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairReqMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_req ( id, code, status, occ_time, req_time, req_dept, req_user, req_desc, urgency_level, req_type, fault_type, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n; Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'', '2025-02-11 14:05:28', 128);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889194117473058817, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":\"WXD202502110001\",\"status\":\"0\",\"occTime\":\"2025-02-11 14:05:18\",\"reqTime\":\"2025-02-11 14:05:17\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"qwdsdf\",\"urgencyLevel\":\"2\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"3\",\"remark\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairReqMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairReqMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_req ( id, code, status, occ_time, req_time, req_dept, req_user, req_desc, urgency_level, req_type, fault_type, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n; Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'', '2025-02-11 14:05:52', 15);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889195670539948034, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":\"WXD202502110001\",\"status\":\"0\",\"occTime\":\"2025-02-11 14:11:51\",\"reqTime\":\"2025-02-11 14:11:48\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"1212\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"2\",\"remark\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairReqMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairReqMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_req ( id, code, status, occ_time, req_time, req_dept, req_user, req_desc, urgency_level, req_type, fault_type, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n; Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'', '2025-02-11 14:12:02', 104);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889196198305026050, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":\"WXD202502110001\",\"status\":\"0\",\"occTime\":\"2025-02-11 14:11:51\",\"reqTime\":\"2025-02-11 14:11:48\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"1212\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"2\",\"remark\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairReqMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairReqMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_req ( id, code, status, occ_time, req_time, req_dept, req_user, req_desc, urgency_level, req_type, fault_type, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n; Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'', '2025-02-11 14:14:08', 16);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889197968636891137, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":\"WXD202502110001\",\"status\":\"0\",\"occTime\":\"2025-02-11 14:11:51\",\"reqTime\":\"2025-02-11 14:11:48\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"1212\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"2\",\"remark\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairReqMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairReqMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_req ( id, code, status, occ_time, req_time, req_dept, req_user, req_desc, urgency_level, req_type, fault_type, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n; Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'', '2025-02-11 14:21:10', 87);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889198119262736386, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":\"WXD202502110001\",\"status\":\"0\",\"occTime\":\"2025-02-11 14:11:51\",\"reqTime\":\"2025-02-11 14:11:48\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"1212\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"2\",\"remark\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairReqMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairReqMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_req ( id, code, status, occ_time, req_time, req_dept, req_user, req_desc, urgency_level, req_type, fault_type, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n; Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'', '2025-02-11 14:21:46', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889198997566771202, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":\"WXD202502110001\",\"status\":\"0\",\"occTime\":\"2025-02-11 14:11:51\",\"reqTime\":\"2025-02-11 14:11:48\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"1212\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"2\",\"remark\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairReqMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairReqMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_req ( id, code, status, occ_time, req_time, req_dept, req_user, req_desc, urgency_level, req_type, fault_type, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n; Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'', '2025-02-11 14:25:15', 13);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889199026759127041, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889199026704601089\",\"code\":\"WXD202502110002\",\"status\":\"0\",\"occTime\":\"2025-02-11 14:11:51\",\"reqTime\":\"2025-02-11 14:11:48\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"1212\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"2\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-11 14:25:22', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889199559142133762, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1888867399784837121\",\"dictSort\":2,\"dictLabel\":\"电气故障\",\"dictValue\":\"2\",\"dictType\":\"repair_fault_type\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-11 14:27:29', 35);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889211052378128385, '000000', '【设备台账】', 3, 'org.dromara.eims.controller.EimsEquController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equ/1888773961174323201', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-11 15:13:09', 22);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889211061311995905, '000000', '【设备台账】', 3, 'org.dromara.eims.controller.EimsEquController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equ/1888773937203875842', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-11 15:13:12', 7);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889484693478047745, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"code\":\"WXD202502110001\",\"status\":\"0\",\"occTime\":\"2025-02-12 09:20:21\",\"reqTime\":\"2025-02-12 09:20:19\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"111\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '', 1, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n### The error may exist in org/dromara/eims/mapper/EimsRepairReqMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsRepairReqMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_repair_req ( id, code, status, occ_time, req_time, req_dept, req_user, req_desc, urgency_level, req_type, fault_type, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'\n; Duplicate entry \'WXD202502110001\' for key \'eims_repair_req.code\'', '2025-02-12 09:20:31', 148);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889506260450803713, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889506260404666369\",\"code\":\"BXD202502120002\",\"status\":\"0\",\"occTime\":\"2025-02-12 10:46:03\",\"reqTime\":\"2025-02-12 10:46:00\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"112\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":1000,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 10:46:12', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889509287685537793, '000000', '故障报修', 3, 'org.dromara.eims.controller.EimsRepairReqController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/repairReq/1888867722909822977', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 10:58:14', 42);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889510345493200898, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889510345426092033\",\"code\":\"BXD202502120003\",\"status\":\"1\",\"occTime\":\"2025-02-12 11:02:07\",\"reqTime\":\"2025-02-12 11:02:05\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"12\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1876204236438884354\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"2\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 11:02:26', 18);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889510921069150209, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889510920993652738\",\"code\":\"BXD202502120004\",\"status\":\"0\",\"occTime\":\"2025-02-12 11:04:31\",\"reqTime\":\"2025-02-12 11:04:29\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"122\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"3\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 11:04:44', 15);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889511033413582849, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889511033325502466\",\"code\":\"BXD202502120005\",\"status\":\"0\",\"occTime\":\"2025-02-12 11:05:00\",\"reqTime\":\"2025-02-12 11:04:58\",\"reqDept\":100,\"reqUser\":1,\"reqDesc\":\"122\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1878988394319949826\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 11:05:10', 17);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889547371311624193, '000000', 'OSS对象存储', 1, 'org.dromara.system.controller.system.SysOssController.upload()', 'POST', 1, 'admin', '研发部门', '/resource/oss/upload', '0:0:0:0:0:0:0:1', '内网IP', '', '', 1, '判断Bucket是否存在失败,请核对配置信息:[software.amazon.awssdk.core.exception.SdkClientException: Failed to send the request: socket connection refused.]', '2025-02-12 13:29:34', 9504);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889547476622209025, '000000', '对象存储状态修改', 2, 'org.dromara.system.controller.system.SysOssConfigController.changeStatus()', 'PUT', 1, 'admin', '研发部门', '/resource/oss/config/changeStatus', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"ossConfigId\":5,\"configKey\":\"image\",\"accessKey\":\"ruoyi\",\"secretKey\":\"ruoyi123\",\"bucketName\":\"ruoyi\",\"prefix\":\"image\",\"endpoint\":\"127.0.0.1:9000\",\"domain\":\"\",\"isHttps\":\"N\",\"status\":\"0\",\"region\":\"\",\"ext1\":\"\",\"remark\":null,\"accessPolicy\":\"1\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 13:29:59', 32);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889547577700741122, '000000', 'OSS对象存储', 1, 'org.dromara.system.controller.system.SysOssController.upload()', 'POST', 1, 'admin', '研发部门', '/resource/oss/upload', '0:0:0:0:0:0:0:1', '内网IP', '', '', 1, '判断Bucket是否存在失败,请核对配置信息:[software.amazon.awssdk.core.exception.SdkClientException: Failed to send the request: socket connection refused.]', '2025-02-12 13:30:23', 5884);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889547614421872642, '000000', '对象存储状态修改', 2, 'org.dromara.system.controller.system.SysOssConfigController.changeStatus()', 'PUT', 1, 'admin', '研发部门', '/resource/oss/config/changeStatus', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"ossConfigId\":1,\"configKey\":\"minio\",\"accessKey\":\"ruoyi\",\"secretKey\":\"ruoyi123\",\"bucketName\":\"ruoyi\",\"prefix\":\"\",\"endpoint\":\"127.0.0.1:9000\",\"domain\":\"\",\"isHttps\":\"N\",\"status\":\"0\",\"region\":\"\",\"ext1\":\"\",\"remark\":null,\"accessPolicy\":\"1\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 13:30:32', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889547672689143810, '000000', '对象存储状态修改', 2, 'org.dromara.system.controller.system.SysOssConfigController.changeStatus()', 'PUT', 1, 'admin', '研发部门', '/resource/oss/config/changeStatus', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"ossConfigId\":1,\"configKey\":\"minio\",\"accessKey\":\"ruoyi\",\"secretKey\":\"ruoyi123\",\"bucketName\":\"ruoyi\",\"prefix\":\"\",\"endpoint\":\"127.0.0.1:9000\",\"domain\":\"\",\"isHttps\":\"N\",\"status\":\"1\",\"region\":\"\",\"ext1\":\"\",\"remark\":null,\"accessPolicy\":\"1\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 13:30:46', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889547770831663106, '000000', 'OSS对象存储', 1, 'org.dromara.system.controller.system.SysOssController.upload()', 'POST', 1, 'admin', '研发部门', '/resource/oss/upload', '0:0:0:0:0:0:0:1', '内网IP', '', '', 1, '判断Bucket是否存在失败,请核对配置信息:[software.amazon.awssdk.core.exception.SdkClientException: Failed to send the request: socket connection refused.]', '2025-02-12 13:31:09', 8880);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889547798983831554, '000000', '对象存储状态修改', 2, 'org.dromara.system.controller.system.SysOssConfigController.changeStatus()', 'PUT', 1, 'admin', '研发部门', '/resource/oss/config/changeStatus', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"ossConfigId\":1,\"configKey\":\"minio\",\"accessKey\":\"ruoyi\",\"secretKey\":\"ruoyi123\",\"bucketName\":\"ruoyi\",\"prefix\":\"\",\"endpoint\":\"127.0.0.1:9000\",\"domain\":\"\",\"isHttps\":\"N\",\"status\":\"0\",\"region\":\"\",\"ext1\":\"\",\"remark\":null,\"accessPolicy\":\"1\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 13:31:16', 7);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889547983503847426, '000000', '用户头像', 2, 'org.dromara.system.controller.system.SysProfileController.avatar()', 'POST', 1, 'admin', '研发部门', '/system/user/profile/avatar', '0:0:0:0:0:0:0:1', '内网IP', '', '', 1, '判断Bucket是否存在失败,请核对配置信息:[software.amazon.awssdk.core.exception.SdkClientException: Failed to send the request: socket connection refused.]', '2025-02-12 13:32:00', 9316);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889561357985869825, '000000', '角色管理', 1, 'org.dromara.system.controller.system.SysRoleController.add()', 'POST', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":2,\"dataScope\":null,\"menuCheckStrictly\":false,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888814115854311426\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:25:09', 62);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889561429511335938, '000000', '角色管理', 3, 'org.dromara.system.controller.system.SysRoleController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/role/3', '0:0:0:0:0:0:0:1', '内网IP', '{}', '', 1, '本部门及以下已分配,不能删除!', '2025-02-12 14:25:26', 24);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889561465582350338, '000000', '角色管理', 4, 'org.dromara.system.controller.system.SysRoleController.cancelAuthUser()', 'PUT', 1, 'admin', '研发部门', '/system/role/authUser/cancel', '0:0:0:0:0:0:0:1', '内网IP', '{\"userId\":\"1888782469222465537\",\"roleId\":3}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:25:34', 16);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889561471550844930, '000000', '角色管理', 4, 'org.dromara.system.controller.system.SysRoleController.cancelAuthUser()', 'PUT', 1, 'admin', '研发部门', '/system/role/authUser/cancel', '0:0:0:0:0:0:0:1', '内网IP', '{\"userId\":3,\"roleId\":3}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:25:36', 5);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889561510847279106, '000000', '角色管理', 3, 'org.dromara.system.controller.system.SysRoleController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/role/3', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:25:45', 25);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889561520829722625, '000000', '角色管理', 3, 'org.dromara.system.controller.system.SysRoleController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/role/4', '0:0:0:0:0:0:0:1', '内网IP', '{}', '', 1, '仅本人已分配,不能删除!', '2025-02-12 14:25:48', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889561547950092289, '000000', '角色管理', 4, 'org.dromara.system.controller.system.SysRoleController.cancelAuthUser()', 'PUT', 1, 'admin', '研发部门', '/system/role/authUser/cancel', '0:0:0:0:0:0:0:1', '内网IP', '{\"userId\":4,\"roleId\":4}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:25:54', 6);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889561619160985602, '000000', '角色管理', 3, 'org.dromara.system.controller.system.SysRoleController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/role/4', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:26:11', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889561934367125505, '000000', '角色管理', 1, 'org.dromara.system.controller.system.SysRoleController.add()', 'POST', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889561934287433729\",\"roleName\":\"线长\",\"roleKey\":\"lineleader\",\"roleSort\":3,\"dataScope\":null,\"menuCheckStrictly\":null,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\",\"1888814115854311426\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:27:26', 22);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889562679325847554, '000000', '角色管理', 1, 'org.dromara.system.controller.system.SysRoleController.add()', 'POST', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889562679283904514\",\"roleName\":\"维修工程师\",\"roleKey\":\"repairman\",\"roleSort\":4,\"dataScope\":null,\"menuCheckStrictly\":null,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1888814115854311426\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:30:24', 18);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889567015141470209, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889561934287433729\",\"roleName\":\"线长\",\"roleKey\":\"line\",\"roleSort\":3,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1875349550770728962\",\"1876074027672731650\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888814115854311426\",\"1888837193552453634\",\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:47:38', 35);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889567040319877121, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889562679283904514\",\"roleName\":\"维修工程师\",\"roleKey\":\"repair\",\"roleSort\":4,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1888814115854311426\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 14:47:44', 16);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889581563961503745, '000000', '用户管理', 1, 'org.dromara.system.controller.system.SysUserController.add()', 'POST', 1, 'admin', '研发部门', '/system/user', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":\"1889581563890200577\",\"deptId\":100,\"userName\":\"zhouyuhua\",\"nickName\":\"周育华\",\"userType\":null,\"email\":null,\"phonenumber\":null,\"sex\":\"0\",\"status\":\"0\",\"remark\":null,\"roleIds\":[\"1889561357813903361\"],\"postIds\":[],\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 15:45:26', 113);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889581665295888385, '000000', '用户管理', 1, 'org.dromara.system.controller.system.SysUserController.add()', 'POST', 1, 'admin', '研发部门', '/system/user', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":\"1889581665270722561\",\"deptId\":100,\"userName\":\"ningcanmin\",\"nickName\":\"宁灿敏\",\"userType\":null,\"email\":null,\"phonenumber\":null,\"sex\":\"0\",\"status\":\"0\",\"remark\":null,\"roleIds\":null,\"postIds\":[],\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 15:45:50', 103);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889581724121001985, '000000', '用户管理', 1, 'org.dromara.system.controller.system.SysUserController.add()', 'POST', 1, 'admin', '研发部门', '/system/user', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":\"1889581724095836162\",\"deptId\":100,\"userName\":\"baoshiwei\",\"nickName\":\"鲍世威\",\"userType\":null,\"email\":null,\"phonenumber\":null,\"sex\":\"0\",\"status\":\"0\",\"remark\":null,\"roleIds\":null,\"postIds\":[],\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 15:46:04', 103);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889581751505612802, '000000', '用户管理', 3, 'org.dromara.system.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/user/4', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 15:46:11', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889581761966206977, '000000', '用户管理', 3, 'org.dromara.system.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/user/1888782469222465537', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 15:46:13', 19);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889581772665876481, '000000', '用户管理', 3, 'org.dromara.system.controller.system.SysUserController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/user/3', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 15:46:16', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889582003939799042, '000000', '角色管理', 4, 'org.dromara.system.controller.system.SysRoleController.selectAuthUserAll()', 'PUT', 1, 'admin', '研发部门', '/system/role/authUser/selectAll', '0:0:0:0:0:0:0:1', '内网IP', '{\"roleId\":\"1889561934287433729\",\"userIds\":\"1889581665270722561\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 15:47:11', 29);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889582063729602561, '000000', '角色管理', 4, 'org.dromara.system.controller.system.SysRoleController.selectAuthUserAll()', 'PUT', 1, 'admin', '研发部门', '/system/role/authUser/selectAll', '0:0:0:0:0:0:0:1', '内网IP', '{\"roleId\":\"1889562679283904514\",\"userIds\":\"1889581724095836162\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 15:47:25', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889589456425283586, '000000', '菜单管理', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":100,\"menuName\":\"用户列表\",\"orderNum\":0,\"path\":null,\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"system:user:list\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 16:16:48', 35);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889589536205139969, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":2,\"dataScope\":null,\"menuCheckStrictly\":false,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1888814115854311426\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1889589456286871554\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 16:17:07', 62);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889595039165554690, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'zhouyuhua', 'XXX科技', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889595038951645185\",\"code\":\"BXD202502120006\",\"status\":\"0\",\"occTime\":\"2025-02-12 16:38:45\",\"reqTime\":\"2025-02-12 16:38:43\",\"reqDept\":100,\"reqUser\":\"1889581563890200577\",\"reqDesc\":\"法国会尽快\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":1000,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 16:38:59', 42);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889595916387459074, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'zhouyuhua', 'XXX科技', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889595916202909698\",\"code\":\"BXD202502120007\",\"status\":\"0\",\"occTime\":\"2025-02-12 16:42:16\",\"reqTime\":\"2025-02-12 16:42:14\",\"reqDept\":100,\"reqUser\":\"1889581563890200577\",\"reqDesc\":\"1是的是的\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"2\",\"equId\":null,\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 16:42:28', 35);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889596046058561538, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'zhouyuhua', 'XXX科技', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889596045999841281\",\"code\":\"BXD202502120008\",\"status\":\"1\",\"occTime\":\"2025-02-12 16:42:46\",\"reqTime\":\"2025-02-12 16:42:44\",\"reqDept\":100,\"reqUser\":\"1889581563890200577\",\"reqDesc\":\"1规划局快乐客家话\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1876204236438884354\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 16:42:59', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889596288925540354, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889562679283904514\",\"roleName\":\"维修工程师\",\"roleKey\":\"repair\",\"roleSort\":4,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[100,1,\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1888837193552453634\",\"1888814115854311426\",\"1889589456286871554\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 16:43:57', 60);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889599005735624706, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889561934287433729\",\"roleName\":\"线长\",\"roleKey\":\"line\",\"roleSort\":3,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[100,1,\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1876074027672731650\",\"1888814115854311426\",\"1889589456286871554\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-12 16:54:45', 43);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889857460492918786, '000000', '【设备台账】', 5, 'org.dromara.eims.controller.EimsEquController.export()', 'POST', 1, 'admin', '研发部门', '/eims/equ/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":null,\"equCode\":null,\"equTypeId\":null,\"assetNo\":null,\"equName\":null,\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":null,\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":null,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null,\"seller\":null,\"unit\":null,\"handleUser\":null,\"purchaseUser\":null,\"attachments\":null}', '', 0, '', '2025-02-13 10:01:45', 1377);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889859221609861122, '000000', '【设备台账】', 5, 'org.dromara.eims.controller.EimsEquController.export()', 'POST', 1, 'admin', '研发部门', '/eims/equ/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":null,\"equCode\":null,\"equTypeId\":null,\"assetNo\":null,\"equName\":null,\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":null,\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":null,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null,\"seller\":null,\"unit\":null,\"handleUser\":null,\"purchaseUser\":null,\"attachments\":null}', '', 0, '', '2025-02-13 10:08:45', 1207);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889859760926056449, '000000', '【设备台账】', 5, 'org.dromara.eims.controller.EimsEquController.export()', 'POST', 1, 'admin', '研发部门', '/eims/equ/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":null,\"equCode\":null,\"equTypeId\":null,\"assetNo\":null,\"equName\":null,\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":null,\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":null,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null,\"seller\":null,\"unit\":null,\"handleUser\":null,\"purchaseUser\":null,\"attachments\":null}', '', 0, '', '2025-02-13 10:10:54', 1016);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889860463509700610, '000000', '【设备台账】', 5, 'org.dromara.eims.controller.EimsEquController.export()', 'POST', 1, 'admin', '研发部门', '/eims/equ/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":null,\"equCode\":null,\"equTypeId\":null,\"assetNo\":null,\"equName\":null,\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":null,\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":null,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null,\"seller\":null,\"unit\":null,\"handleUser\":null,\"purchaseUser\":null,\"attachments\":null}', '', 0, '', '2025-02-13 10:13:41', 1117);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889860879584653313, '000000', '【设备台账】', 5, 'org.dromara.eims.controller.EimsEquController.export()', 'POST', 1, 'admin', '研发部门', '/eims/equ/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":null,\"equCode\":null,\"equTypeId\":null,\"assetNo\":null,\"equName\":null,\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":null,\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":null,\"inventoryFlag\":null,\"inventoryDate\":null,\"serviceLife\":null,\"seller\":null,\"unit\":null,\"handleUser\":null,\"purchaseUser\":null,\"attachments\":null}', '', 0, '', '2025-02-13 10:15:20', 1100);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889860991278968834, '000000', '【设备台账】', 3, 'org.dromara.eims.controller.EimsEquController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equ/1000,1875827537628749825,1876204236438884354,1878988394319949826', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 10:15:47', 33);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889865233985236994, '000000', '菜单管理', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":\"1875349550770728962\",\"menuName\":\"【设备台账】导入\",\"orderNum\":6,\"path\":null,\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 10:32:38', 21);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889865288402137090, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1889865233922322434\",\"parentId\":\"1875349550770728962\",\"menuName\":\"【设备台账】导入\",\"orderNum\":6,\"path\":\"\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:equ:import\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 10:32:51', 55);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889865365929652226, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889561934287433729\",\"roleName\":\"线长\",\"roleKey\":\"line\",\"roleSort\":3,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[100,1,\"1889589456286871554\",\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1888814115854311426\",\"1889865233922322434\",\"1875349550770728962\",\"1876074027672731650\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 10:33:10', 70);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889904377071505409, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@9cad1bb0 to class java.lang.Long error ', '2025-02-13 13:08:11', 307);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889904827539755009, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@9cad1bb0 to class java.lang.Long error ', '2025-02-13 13:09:58', 42);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889905165650989057, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@9cad1bb0 to class java.lang.Long error ', '2025-02-13 13:11:19', 64);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889906069322178561, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@aaa36194 to class java.lang.Long error ', '2025-02-13 13:14:54', 546);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889907517812482050, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@907b0eff to class java.lang.Long error ', '2025-02-13 13:20:40', 436);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889908172803383297, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@907b0eff to class java.lang.Long error ', '2025-02-13 13:23:16', 31);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889908547933544450, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@5fbf67bf to class java.util.Date error ', '2025-02-13 13:24:45', 8479);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889908971294007298, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@5fbf67bf to class java.util.Date error ', '2025-02-13 13:26:26', 278);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889909428024352769, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@5fbf67bf to class java.util.Date error ', '2025-02-13 13:28:15', 99484);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889909509884583938, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@3a73d9c2 to class java.util.Date error ', '2025-02-13 13:28:35', 28);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889909561206087681, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@3a73d9c2 to class java.util.Date error ', '2025-02-13 13:28:47', 27);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889909730546917378, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'Convert data com.alibaba.excel.metadata.data.ReadCellData@1eea069d to class java.util.Date error ', '2025-02-13 13:29:27', 4044);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889911829162737666, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 225 条数据格式不正确,错误如下:<br/>1、账号 电子镇流器节能灯输入特性分析仪 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null<br/>2、账号 低温恒温槽 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null<br/>3、账号 漏电流测试仪 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null<br/>4、账号 耐电压测试仪 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null<br/>5、账号 LCR数字电桥 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null<br/>6、账号 耐电压测试仪 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null<br/>7、账号 耐电压测试仪 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null<br/>8、账号 电子负载 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null<br/>9、账号 交流测试仪 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null<br/>10、账号 交流测试仪 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null<br/>11、账号 泰克示波器 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null<br/>12、账号 泰克示波器 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null<br/>13、账号 冲击耐压试验仪 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null<br/>14、账号 高加速度冲击实验系统 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null<br/>15、账号 静电放电发生器 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.Long)\" because \"equ\" is null<br/>16、账号 喷水实验仪 导入失败:Cannot invoke \"org.dromara.eims.domain.bo.EimsEquBo.setCreateBy(java.lang.', '2025-02-13 13:37:48', 5646);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889912228376592386, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 36 条数据格式不正确,错误如下:<br/>1、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1<br/>2、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1<br/>3、设备 炉温测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'contact_phone\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper', '2025-02-13 13:39:23', 2408);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889914452754423809, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 36 条数据格式不正确,错误如下:<br/>1、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1<br/>2、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1<br/>3、设备 炉温测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'contact_phone\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eim', '2025-02-13 13:48:13', 1798);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889915068608274433, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 222 条数据格式不正确,错误如下:<br/>1、设备 电子镇流器节能灯输入特性分析仪 已存在<br/>2、设备 低温恒温槽 已存在<br/>3、设备 漏电流测试仪 已存在<br/>4、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1<br/>5、设备 LCR数字电桥 已存在<br/>6、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1<br/>7、设备 耐电压测试仪 已存在<br/>8、设备 电子负载 已存在<br/>9、设备 交流测试仪 已存在<br/>10、设备 交流测试仪 已存在<br/>11、设备 泰克示波器 已存在<br/>12、设备 泰克示波器 已存在<br/>13、设备 冲击耐压试验仪 已存在<br/>14、设备 高加速度冲击实验系统 已存在<br/>15、设备 静电放电发生器 已存在<br/>16、设备 喷水实验仪 已存在<br/', '2025-02-13 13:50:40', 1012);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889917574189015042, '000000', '字典类型', 1, 'org.dromara.system.controller.system.SysDictTypeController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/type', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":null,\"dictName\":\"设备单位\",\"dictType\":\"eims_equ_unit\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 14:00:37', 21);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889917776027312130, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":1,\"dictLabel\":\"1\",\"dictValue\":\"台\",\"dictType\":\"eims_equ_unit\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 14:01:25', 23);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889917821430652929, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":2,\"dictLabel\":\"套\",\"dictValue\":\"2\",\"dictType\":\"eims_equ_unit\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 14:01:36', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889917865521176578, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":3,\"dictLabel\":\"个\",\"dictValue\":\"3\",\"dictType\":\"eims_equ_unit\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 14:01:47', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889917890926075906, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":3,\"dictLabel\":\"组\",\"dictValue\":\"3\",\"dictType\":\"eims_equ_unit\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":500,\"msg\":\"新增字典数据\'3\'失败,字典键值已存在\",\"data\":null}', 0, '', '2025-02-13 14:01:53', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889917912241528834, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":4,\"dictLabel\":\"组\",\"dictValue\":\"4\",\"dictType\":\"eims_equ_unit\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 14:01:58', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889917974099124225, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":5,\"dictLabel\":\"面\",\"dictValue\":\"5\",\"dictType\":\"eims_equ_unit\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 14:02:13', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889918006470762497, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1889917775964397570\",\"dictSort\":1,\"dictLabel\":\"台\",\"dictValue\":\"1\",\"dictType\":\"eims_equ_unit\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 14:02:20', 15);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889931802589380610, '000000', '【设备台账】', 1, 'org.dromara.eims.controller.EimsEquController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1889931802350305281\",\"equCode\":\"123456\",\"equTypeId\":1,\"assetNo\":\"123456\",\"equName\":\"测试01\",\"modelNo\":\"1234\",\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null,\"seller\":null,\"unit\":\"1\",\"handleUser\":null,\"purchaseUser\":null,\"attachments\":null,\"profile\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 14:57:10', 52);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889932131598974978, '000000', '【设备台账】', 1, 'org.dromara.eims.controller.EimsEquController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1889932131523477505\",\"equCode\":null,\"equTypeId\":0,\"assetNo\":null,\"equName\":\"12\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null,\"seller\":null,\"unit\":null,\"handleUser\":null,\"purchaseUser\":null,\"attachments\":null,\"profile\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 14:58:28', 19);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889932616854781954, '000000', '【设备台账】', 1, 'org.dromara.eims.controller.EimsEquController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1889932616817033217\",\"equCode\":null,\"equTypeId\":0,\"assetNo\":null,\"equName\":\"thjkjhg\",\"modelNo\":null,\"madeIn\":null,\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":null,\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null,\"seller\":null,\"unit\":null,\"handleUser\":\"1889581724095836162\",\"purchaseUser\":\"1889581665270722561\",\"attachments\":null,\"profile\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:00:24', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889934013134389250, '000000', '【设备台账】', 3, 'org.dromara.eims.controller.EimsEquController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equ/1889931802350305281,1889932131523477505,1889932616817033217', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:05:57', 33);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889934341141544962, '000000', '【设备台账】', 1, 'org.dromara.eims.controller.EimsEquController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1889934341091213314\",\"equCode\":\"a123456\",\"equTypeId\":0,\"assetNo\":\"GM0001\",\"equName\":\"测试1\",\"modelNo\":\"1212\",\"madeIn\":\"上海兰宝\",\"ratedPower\":\"1\",\"plateInfo\":\"1\",\"purchaseDate\":\"2025-02-13\",\"status\":\"0\",\"location\":\"1212\",\"deptUsed\":100,\"respPerson\":1,\"contactPhone\":\"17621129416\",\"deployDate\":\"2025-02-13\",\"trialDate\":\"2025-02-13\",\"planAcceptDate\":\"2025-02-13\",\"actualAcceptDate\":\"2025-02-13\",\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":\"2025-02-13\",\"serviceLife\":6,\"seller\":\"海上蓝宝\",\"unit\":\"1\",\"handleUser\":\"1889581724095836162\",\"purchaseUser\":\"1889581563890200577\",\"attachments\":null,\"profile\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:07:15', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889934391460610050, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.EimsEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1889934341091213314\",\"equCode\":\"a123456\",\"equTypeId\":1,\"assetNo\":\"GM0001\",\"equName\":\"测试1\",\"modelNo\":\"1212\",\"madeIn\":\"上海兰宝\",\"ratedPower\":\"1\",\"plateInfo\":\"1\",\"purchaseDate\":\"2025-02-13\",\"status\":\"0\",\"location\":\"1212\",\"deptUsed\":100,\"respPerson\":1,\"contactPhone\":\"17621129416\",\"deployDate\":\"2025-02-13\",\"trialDate\":\"2025-02-13\",\"planAcceptDate\":\"2025-02-13\",\"actualAcceptDate\":\"2025-02-13\",\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":\"2025-02-13\",\"serviceLife\":6,\"seller\":\"海上蓝宝\",\"unit\":\"1\",\"handleUser\":\"1889581724095836162\",\"purchaseUser\":\"1889581563890200577\",\"attachments\":null,\"profile\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:07:27', 13);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889935536136503298, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '{\"code\":200,\"msg\":\"恭喜您,数据已全部导入成功!共 2 条,数据如下:<br/>1、设备 null 导入成功<br/>2、设备 null 导入成功\",\"data\":null}', 0, '', '2025-02-13 15:12:00', 2265);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889935583154651137, '000000', '【设备台账】', 3, 'org.dromara.eims.controller.EimsEquController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equ/1889935533229850625', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:12:11', 7);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889935589223809025, '000000', '【设备台账】', 3, 'org.dromara.eims.controller.EimsEquController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equ/1889935530247700482', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:12:12', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889937943079796737, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 36 条数据格式不正确,错误如下:<br/>1、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1<br/>2、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1<br/>3、设备 炉温测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'contact_phone\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara', '2025-02-13 15:21:34', 2320);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889939089232084993, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1875775031024390146\",\"dictSort\":1,\"dictLabel\":\"闲置\",\"dictValue\":\"1\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"success\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:26:07', 39);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889939423316787202, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1875775031024390146\",\"dictSort\":1,\"dictLabel\":\"使用\",\"dictValue\":\"1\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"success\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:27:27', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889939478648045570, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1875775424861147138\",\"dictSort\":2,\"dictLabel\":\"停用\",\"dictValue\":\"2\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"warning\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:27:40', 43);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889939534377762818, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":4,\"dictLabel\":\"闲置\",\"dictValue\":\"4\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":null,\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:27:53', 15);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889939612228239361, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1889939534335819777\",\"dictSort\":4,\"dictLabel\":\"闲置\",\"dictValue\":\"4\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"info\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:28:12', 39);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889939743778390018, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":5,\"dictLabel\":\"停用\",\"dictValue\":\"5\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"red\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:28:43', 13);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889939768776441857, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1889939743736446978\",\"dictSort\":5,\"dictLabel\":\"停用\",\"dictValue\":\"5\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"danger\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:28:49', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889939832458559490, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1875775593254064130\",\"dictSort\":3,\"dictLabel\":\"报废\",\"dictValue\":\"3\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"info\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:29:04', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889939870765137921, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1889939534335819777\",\"dictSort\":4,\"dictLabel\":\"闲置\",\"dictValue\":\"4\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"pink\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:29:13', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889939963253735426, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":6,\"dictLabel\":\"新增\",\"dictValue\":\"6\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"pink\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:29:35', 13);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889940006606061569, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1889939963207598082\",\"dictSort\":6,\"dictLabel\":\"新增\",\"dictValue\":\"6\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:29:46', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889940069017305089, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1875775593254064130\",\"dictSort\":3,\"dictLabel\":\"报废\",\"dictValue\":\"3\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"pink\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:30:00', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889940095294619649, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1889939534335819777\",\"dictSort\":4,\"dictLabel\":\"闲置\",\"dictValue\":\"4\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"info\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:30:07', 42);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889940295388086274, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1875775593254064130\",\"dictSort\":3,\"dictLabel\":\"报废\",\"dictValue\":\"3\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"danger\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:30:54', 13);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889940366758363137, '000000', '字典类型', 3, 'org.dromara.system.controller.system.SysDictDataController.remove()', 'DELETE', 1, 'admin', '研发部门', '/system/dict/data/1889939743736446978', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:31:11', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889940409749979138, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1889939963207598082\",\"dictSort\":5,\"dictLabel\":\"新增\",\"dictValue\":\"5\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"info\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:31:22', 13);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889940479350259714, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1875775424861147138\",\"dictSort\":2,\"dictLabel\":\"停用\",\"dictValue\":\"2\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"purple\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:31:38', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889940512007110658, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1889939534335819777\",\"dictSort\":4,\"dictLabel\":\"闲置\",\"dictValue\":\"4\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"orange\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:31:46', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889940682664951809, '000000', '字典类型', 9, 'org.dromara.system.controller.system.SysDictTypeController.refreshCache()', 'DELETE', 1, 'admin', '研发部门', '/system/dict/type/refreshCache', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:32:27', 7);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889940883534364674, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1875775424861147138\",\"dictSort\":2,\"dictLabel\":\"停用\",\"dictValue\":\"2\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"danger\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:33:15', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889940902836551681, '000000', '字典数据', 2, 'org.dromara.system.controller.system.SysDictDataController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":\"1875775593254064130\",\"dictSort\":3,\"dictLabel\":\"报废\",\"dictValue\":\"3\",\"dictType\":\"sys_equ_status\",\"cssClass\":null,\"listClass\":\"pink\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:33:19', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889944971441455105, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1889944971382734849\",\"code\":\"BXD202502130001\",\"status\":\"0\",\"occTime\":\"2025-02-13 15:49:15\",\"reqTime\":\"2025-02-13 15:49:13\",\"reqDept\":100,\"reqUser\":\"1889581563890200577\",\"reqDesc\":\"fghjkl\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1889937933705527297\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 15:49:29', 24);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889945510464045058, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 36 条数据格式不正确,错误如下:<br/>1、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1<br/>2、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1<br/>3、设备 炉温测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'contact_phone\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara', '2025-02-13 15:51:38', 2363);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889948146319867906, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 222 条数据格式不正确,错误如下:<br/>1、设备 电子镇流器节能灯输入特性分析仪GPA2001G004 已存在<br/>2、设备 低温恒温槽GPA2002E006 已存在<br/>3、设备 漏电流测试仪GPA2004H024 已存在<br/>4、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1<br/>5、设备 LCR数字电桥GPA2005H027 已存在<br/>6、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1<br/>7、设备 耐电压测试仪GPA2004H028 已存在<br/>8、设备 电子负载GPG2010WL003 已存在<br/>9、设备 交流测试仪GPA2007H048 已存在<br/>10、设备 交流测试仪GPA2007H049 已存在<br/>11、设备 泰克示波器GPG2010WL001 已存在<br/>12、', '2025-02-13 16:02:06', 2547);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889948344102273025, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 36 条数据格式不正确,错误如下:<br/>1、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1<br/>2、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1<br/>3、设备 炉温测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'contact_phone\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara', '2025-02-13 16:02:53', 2517);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889948901437194242, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 222 条数据格式不正确,错误如下:<br/>1、设备 电子镇流器节能灯输入特性分析仪GPA2001G004 已存在<br/>2、设备 低温恒温槽GPA2002E006 已存在<br/>3、设备 漏电流测试仪GPA2004H024 已存在<br/>4、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1<br/>5、设备 LCR数字电桥GPA2005H027 已存在<br/>6、设备 耐电压测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, contact_phone, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'unit\' at row 1\n; Data truncation: Data too long for column \'unit\' at row 1<br/>7、设备 耐电压测试仪GPA2004H028 已存在<br/>8、设备 电子负载GPG2010WL003 已存在<br/>9、设备 交流测试仪GPA2007H048 已存在<br/>10、设备 交流测试仪GPA2007H049 已存在<br/>11、设备 泰克示波器GPG2010WL001 已存在<br/>12、', '2025-02-13 16:05:06', 17548);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889952477525835777, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 1 条数据格式不正确,错误如下:<br/>1、设备 炉温测试仪 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'contact_phone\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, rated_power, purchase_date, location, contact_phone, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'contact_phone\' at row 1\n; Data truncation: Data too long for column \'contact_phone\' at row 1', '2025-02-13 16:19:19', 1849);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889953717315960833, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '{\"code\":200,\"msg\":\"恭喜您,数据已全部导入成功!共 225 条,数据如下:<br/>1、设备 电子镇流器节能灯输入特性分析仪 导入成功<br/>2、设备 低温恒温槽 导入成功<br/>3、设备 漏电流测试仪 导入成功<br/>4、设备 耐电压测试仪 导入成功<br/>5、设备 LCR数字电桥 导入成功<br/>6、设备 耐电压测试仪 导入成功<br/>7、设备 耐电压测试仪 导入成功<br/>8、设备 电子负载 导入成功<br/>9、设备 交流测试仪 导入成功<br/>10、设备 交流测试仪 导入成功<br/>11、设备 泰克示波器 导入成功<br/>12、设备 泰克示波器 导入成功<br/>13、设备 冲击耐压试验仪 导入成功<br/>14、设备 高加速度冲击实验系统 导入成功<br/>15、设备 静电放电发生器 导入成功<br/>16、设备 喷水实验仪 导入成功<br/>17、设备 机械振动台 导入成功<br/>18、设备 群脉冲发生器 导入成功<br/>19、设备 恒温水槽 导入成功<br/>20、设备 炉温测试仪 导入成功<br/>21、设备 数字存储示波器 导入成功<br/>22、设备 频率计数器 导入成功<br/>23、设备 交流测试仪 导入成功<br/>24、设备 交流测试仪 导入成功<br/>25、设备 交流测试仪 导入成功<br/>26、设备 交流测试仪 导入成功<br/>27、设备 交流测试仪 导入成功<br/>28、设备 交流测试仪 导入成功<br/>29、设备 LCR数字电桥 导入成功<br/>30、设备 DC高精度传感器测试仪 导入成功<br/>31、设备 DC高精度传感器测试仪 导入成功<br/>32、设备 DC高精度传感器测试仪 导入成功<br/>33、设备 DC高精度传感器测试仪 导入成功<br/>34、设备 数字存储示波器 导入成功<br/>35、设备 数字存储示波器 导入成功<br/>36、设备 数字存储示波器 导入成功<br/>37、设备 数字存储示波器 导入成功<br/>38、设备 耐电压测试仪 导入成功<br/>39、设备 耐电压测试仪 导入成功<br/>40、设备 光强度测量仪 导入成功<br/>41、设备 耐电压测试仪 导入成功<br/>42、设备 耐电压测试仪 导入成功<br/>43、设备 钻铣镗磨床 导入成功<br/>44、设备 切板机 导入成功<br/>45、设备 车床 导入成功<br/>46、设备 车床 导入成功<br/>47、设备 鼓风干燥箱 导入成功<br/>48、设备 鼓风干燥箱 导入成功<br/>49、设备 null 导入成功<br/>50、设备 扎线机 导入成功<br/>51、设备 台式钻攻两用机 导入成功<br/>52、设备 升降机 导入成功<br/>53、设备 空压机 导入成功<br/>54、设备 自动捆包机 导入成功<br/>55、设备 超声波清洗机 导入成功<br/>56、设备 自动切管机 导入成功<br/>57、设备 热熔机 导入成功<br/>58、设备 真空包装机 导入成功<br/>59、设备 超音波熔接机 导入成功<br/>60、设备 数控车床 导入成功<br/>61、设备 全自动绕线机 导入成功<br/>62、设备 半导体激光打标机 导入成功<br/>63、设备 八温区回流焊 导入成功<br/>64、设备 贴片机 导入成功<br/>65、设备 接驳台 导入成功<br/>66、设备 烟雾净化过滤系统 导入成功<br/>67、设备 MB1000媒介喷射器 导入成功<br/>68、设备 贴片机 导入成功<br/>69、设备 接驳台 导入成功<br/>70、设备 接驳台 导入成功<br/>71、设备 超音波手焊接机 导入成功<br/>72、设备 冰箱 导入成功<br/>73、设备 稳变压器 导入成功<br/>74、设备 端子机 导入成功<br/>75、设备 饶线机 导入成功<br/>76、设备 CNC瑞士型自动车床 导入成功<br/>77、设备 自动棒材送料机 导入成功<br/>78、设备 双液自动点胶机 导入成功<br/>79、设备 激光调阻机 导入成功<br/>80、设备 传感器自动检测系统 导入成功<br/>81、设备 精密数控车床 导入成功<br/>82、设备 超音波熔接机 导入成功<br/>83、设备 双液自动点胶机 导入成功<br/>84、设备 油压闸式剪板机 导入成功<br/>85、设备 折弯机 导入成功<br/>86、设备 工作台(4人) 导入成功<br/>87、设备 工作台 导入成功<br/>88、设备 工作台(封灌间) 导入成功<br/>89、设备 货架(重) 导入成功<br/>90、设备 工作台(金工间) 导入成功<', 0, '', '2025-02-13 16:24:15', 1133);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889954347682103298, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '{\"code\":200,\"msg\":\"恭喜您,数据已全部导入成功!共 225 条,数据如下:<br/>1、设备 电子镇流器节能灯输入特性分析仪 导入成功<br/>2、设备 低温恒温槽 导入成功<br/>3、设备 漏电流测试仪 导入成功<br/>4、设备 耐电压测试仪 导入成功<br/>5、设备 LCR数字电桥 导入成功<br/>6、设备 耐电压测试仪 导入成功<br/>7、设备 耐电压测试仪 导入成功<br/>8、设备 电子负载 导入成功<br/>9、设备 交流测试仪 导入成功<br/>10、设备 交流测试仪 导入成功<br/>11、设备 泰克示波器 导入成功<br/>12、设备 泰克示波器 导入成功<br/>13、设备 冲击耐压试验仪 导入成功<br/>14、设备 高加速度冲击实验系统 导入成功<br/>15、设备 静电放电发生器 导入成功<br/>16、设备 喷水实验仪 导入成功<br/>17、设备 机械振动台 导入成功<br/>18、设备 群脉冲发生器 导入成功<br/>19、设备 恒温水槽 导入成功<br/>20、设备 炉温测试仪 导入成功<br/>21、设备 数字存储示波器 导入成功<br/>22、设备 频率计数器 导入成功<br/>23、设备 交流测试仪 导入成功<br/>24、设备 交流测试仪 导入成功<br/>25、设备 交流测试仪 导入成功<br/>26、设备 交流测试仪 导入成功<br/>27、设备 交流测试仪 导入成功<br/>28、设备 交流测试仪 导入成功<br/>29、设备 LCR数字电桥 导入成功<br/>30、设备 DC高精度传感器测试仪 导入成功<br/>31、设备 DC高精度传感器测试仪 导入成功<br/>32、设备 DC高精度传感器测试仪 导入成功<br/>33、设备 DC高精度传感器测试仪 导入成功<br/>34、设备 数字存储示波器 导入成功<br/>35、设备 数字存储示波器 导入成功<br/>36、设备 数字存储示波器 导入成功<br/>37、设备 数字存储示波器 导入成功<br/>38、设备 耐电压测试仪 导入成功<br/>39、设备 耐电压测试仪 导入成功<br/>40、设备 光强度测量仪 导入成功<br/>41、设备 耐电压测试仪 导入成功<br/>42、设备 耐电压测试仪 导入成功<br/>43、设备 钻铣镗磨床 导入成功<br/>44、设备 切板机 导入成功<br/>45、设备 车床 导入成功<br/>46、设备 车床 导入成功<br/>47、设备 鼓风干燥箱 导入成功<br/>48、设备 鼓风干燥箱 导入成功<br/>49、设备 null 导入成功<br/>50、设备 扎线机 导入成功<br/>51、设备 台式钻攻两用机 导入成功<br/>52、设备 升降机 导入成功<br/>53、设备 空压机 导入成功<br/>54、设备 自动捆包机 导入成功<br/>55、设备 超声波清洗机 导入成功<br/>56、设备 自动切管机 导入成功<br/>57、设备 热熔机 导入成功<br/>58、设备 真空包装机 导入成功<br/>59、设备 超音波熔接机 导入成功<br/>60、设备 数控车床 导入成功<br/>61、设备 全自动绕线机 导入成功<br/>62、设备 半导体激光打标机 导入成功<br/>63、设备 八温区回流焊 导入成功<br/>64、设备 贴片机 导入成功<br/>65、设备 接驳台 导入成功<br/>66、设备 烟雾净化过滤系统 导入成功<br/>67、设备 MB1000媒介喷射器 导入成功<br/>68、设备 贴片机 导入成功<br/>69、设备 接驳台 导入成功<br/>70、设备 接驳台 导入成功<br/>71、设备 超音波手焊接机 导入成功<br/>72、设备 冰箱 导入成功<br/>73、设备 稳变压器 导入成功<br/>74、设备 端子机 导入成功<br/>75、设备 饶线机 导入成功<br/>76、设备 CNC瑞士型自动车床 导入成功<br/>77、设备 自动棒材送料机 导入成功<br/>78、设备 双液自动点胶机 导入成功<br/>79、设备 激光调阻机 导入成功<br/>80、设备 传感器自动检测系统 导入成功<br/>81、设备 精密数控车床 导入成功<br/>82、设备 超音波熔接机 导入成功<br/>83、设备 双液自动点胶机 导入成功<br/>84、设备 油压闸式剪板机 导入成功<br/>85、设备 折弯机 导入成功<br/>86、设备 工作台(4人) 导入成功<br/>87、设备 工作台 导入成功<br/>88、设备 工作台(封灌间) 导入成功<br/>89、设备 货架(重) 导入成功<br/>90、设备 工作台(金工间) 导入成功<', 0, '', '2025-02-13 16:26:45', 2438);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889954805138063361, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '{\"code\":200,\"msg\":\"恭喜您,数据已全部导入成功!共 225 条,数据如下:<br/>1、设备 电子镇流器节能灯输入特性分析仪 导入成功<br/>2、设备 低温恒温槽 导入成功<br/>3、设备 漏电流测试仪 导入成功<br/>4、设备 耐电压测试仪 导入成功<br/>5、设备 LCR数字电桥 导入成功<br/>6、设备 耐电压测试仪 导入成功<br/>7、设备 耐电压测试仪 导入成功<br/>8、设备 电子负载 导入成功<br/>9、设备 交流测试仪 导入成功<br/>10、设备 交流测试仪 导入成功<br/>11、设备 泰克示波器 导入成功<br/>12、设备 泰克示波器 导入成功<br/>13、设备 冲击耐压试验仪 导入成功<br/>14、设备 高加速度冲击实验系统 导入成功<br/>15、设备 静电放电发生器 导入成功<br/>16、设备 喷水实验仪 导入成功<br/>17、设备 机械振动台 导入成功<br/>18、设备 群脉冲发生器 导入成功<br/>19、设备 恒温水槽 导入成功<br/>20、设备 炉温测试仪 导入成功<br/>21、设备 数字存储示波器 导入成功<br/>22、设备 频率计数器 导入成功<br/>23、设备 交流测试仪 导入成功<br/>24、设备 交流测试仪 导入成功<br/>25、设备 交流测试仪 导入成功<br/>26、设备 交流测试仪 导入成功<br/>27、设备 交流测试仪 导入成功<br/>28、设备 交流测试仪 导入成功<br/>29、设备 LCR数字电桥 导入成功<br/>30、设备 DC高精度传感器测试仪 导入成功<br/>31、设备 DC高精度传感器测试仪 导入成功<br/>32、设备 DC高精度传感器测试仪 导入成功<br/>33、设备 DC高精度传感器测试仪 导入成功<br/>34、设备 数字存储示波器 导入成功<br/>35、设备 数字存储示波器 导入成功<br/>36、设备 数字存储示波器 导入成功<br/>37、设备 数字存储示波器 导入成功<br/>38、设备 耐电压测试仪 导入成功<br/>39、设备 耐电压测试仪 导入成功<br/>40、设备 光强度测量仪 导入成功<br/>41、设备 耐电压测试仪 导入成功<br/>42、设备 耐电压测试仪 导入成功<br/>43、设备 钻铣镗磨床 导入成功<br/>44、设备 切板机 导入成功<br/>45、设备 车床 导入成功<br/>46、设备 车床 导入成功<br/>47、设备 鼓风干燥箱 导入成功<br/>48、设备 鼓风干燥箱 导入成功<br/>49、设备 null 导入成功<br/>50、设备 扎线机 导入成功<br/>51、设备 台式钻攻两用机 导入成功<br/>52、设备 升降机 导入成功<br/>53、设备 空压机 导入成功<br/>54、设备 自动捆包机 导入成功<br/>55、设备 超声波清洗机 导入成功<br/>56、设备 自动切管机 导入成功<br/>57、设备 热熔机 导入成功<br/>58、设备 真空包装机 导入成功<br/>59、设备 超音波熔接机 导入成功<br/>60、设备 数控车床 导入成功<br/>61、设备 全自动绕线机 导入成功<br/>62、设备 半导体激光打标机 导入成功<br/>63、设备 八温区回流焊 导入成功<br/>64、设备 贴片机 导入成功<br/>65、设备 接驳台 导入成功<br/>66、设备 烟雾净化过滤系统 导入成功<br/>67、设备 MB1000媒介喷射器 导入成功<br/>68、设备 贴片机 导入成功<br/>69、设备 接驳台 导入成功<br/>70、设备 接驳台 导入成功<br/>71、设备 超音波手焊接机 导入成功<br/>72、设备 冰箱 导入成功<br/>73、设备 稳变压器 导入成功<br/>74、设备 端子机 导入成功<br/>75、设备 饶线机 导入成功<br/>76、设备 CNC瑞士型自动车床 导入成功<br/>77、设备 自动棒材送料机 导入成功<br/>78、设备 双液自动点胶机 导入成功<br/>79、设备 激光调阻机 导入成功<br/>80、设备 传感器自动检测系统 导入成功<br/>81、设备 精密数控车床 导入成功<br/>82、设备 超音波熔接机 导入成功<br/>83、设备 双液自动点胶机 导入成功<br/>84、设备 油压闸式剪板机 导入成功<br/>85、设备 折弯机 导入成功<br/>86、设备 工作台(4人) 导入成功<br/>87、设备 工作台 导入成功<br/>88、设备 工作台(封灌间) 导入成功<br/>89、设备 货架(重) 导入成功<br/>90、设备 工作台(金工间) 导入成功<', 0, '', '2025-02-13 16:28:34', 2222);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889955045811421185, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '{\"code\":200,\"msg\":\"恭喜您,数据已全部导入成功!共 225 条,数据如下:<br/>1、设备 电子镇流器节能灯输入特性分析仪 导入成功<br/>2、设备 低温恒温槽 导入成功<br/>3、设备 漏电流测试仪 导入成功<br/>4、设备 耐电压测试仪 导入成功<br/>5、设备 LCR数字电桥 导入成功<br/>6、设备 耐电压测试仪 导入成功<br/>7、设备 耐电压测试仪 导入成功<br/>8、设备 电子负载 导入成功<br/>9、设备 交流测试仪 导入成功<br/>10、设备 交流测试仪 导入成功<br/>11、设备 泰克示波器 导入成功<br/>12、设备 泰克示波器 导入成功<br/>13、设备 冲击耐压试验仪 导入成功<br/>14、设备 高加速度冲击实验系统 导入成功<br/>15、设备 静电放电发生器 导入成功<br/>16、设备 喷水实验仪 导入成功<br/>17、设备 机械振动台 导入成功<br/>18、设备 群脉冲发生器 导入成功<br/>19、设备 恒温水槽 导入成功<br/>20、设备 炉温测试仪 导入成功<br/>21、设备 数字存储示波器 导入成功<br/>22、设备 频率计数器 导入成功<br/>23、设备 交流测试仪 导入成功<br/>24、设备 交流测试仪 导入成功<br/>25、设备 交流测试仪 导入成功<br/>26、设备 交流测试仪 导入成功<br/>27、设备 交流测试仪 导入成功<br/>28、设备 交流测试仪 导入成功<br/>29、设备 LCR数字电桥 导入成功<br/>30、设备 DC高精度传感器测试仪 导入成功<br/>31、设备 DC高精度传感器测试仪 导入成功<br/>32、设备 DC高精度传感器测试仪 导入成功<br/>33、设备 DC高精度传感器测试仪 导入成功<br/>34、设备 数字存储示波器 导入成功<br/>35、设备 数字存储示波器 导入成功<br/>36、设备 数字存储示波器 导入成功<br/>37、设备 数字存储示波器 导入成功<br/>38、设备 耐电压测试仪 导入成功<br/>39、设备 耐电压测试仪 导入成功<br/>40、设备 光强度测量仪 导入成功<br/>41、设备 耐电压测试仪 导入成功<br/>42、设备 耐电压测试仪 导入成功<br/>43、设备 钻铣镗磨床 导入成功<br/>44、设备 切板机 导入成功<br/>45、设备 车床 导入成功<br/>46、设备 车床 导入成功<br/>47、设备 鼓风干燥箱 导入成功<br/>48、设备 鼓风干燥箱 导入成功<br/>49、设备 null 导入成功<br/>50、设备 扎线机 导入成功<br/>51、设备 台式钻攻两用机 导入成功<br/>52、设备 升降机 导入成功<br/>53、设备 空压机 导入成功<br/>54、设备 自动捆包机 导入成功<br/>55、设备 超声波清洗机 导入成功<br/>56、设备 自动切管机 导入成功<br/>57、设备 热熔机 导入成功<br/>58、设备 真空包装机 导入成功<br/>59、设备 超音波熔接机 导入成功<br/>60、设备 数控车床 导入成功<br/>61、设备 全自动绕线机 导入成功<br/>62、设备 半导体激光打标机 导入成功<br/>63、设备 八温区回流焊 导入成功<br/>64、设备 贴片机 导入成功<br/>65、设备 接驳台 导入成功<br/>66、设备 烟雾净化过滤系统 导入成功<br/>67、设备 MB1000媒介喷射器 导入成功<br/>68、设备 贴片机 导入成功<br/>69、设备 接驳台 导入成功<br/>70、设备 接驳台 导入成功<br/>71、设备 超音波手焊接机 导入成功<br/>72、设备 冰箱 导入成功<br/>73、设备 稳变压器 导入成功<br/>74、设备 端子机 导入成功<br/>75、设备 饶线机 导入成功<br/>76、设备 CNC瑞士型自动车床 导入成功<br/>77、设备 自动棒材送料机 导入成功<br/>78、设备 双液自动点胶机 导入成功<br/>79、设备 激光调阻机 导入成功<br/>80、设备 传感器自动检测系统 导入成功<br/>81、设备 精密数控车床 导入成功<br/>82、设备 超音波熔接机 导入成功<br/>83、设备 双液自动点胶机 导入成功<br/>84、设备 油压闸式剪板机 导入成功<br/>85、设备 折弯机 导入成功<br/>86、设备 工作台(4人) 导入成功<br/>87、设备 工作台 导入成功<br/>88、设备 工作台(封灌间) 导入成功<br/>89、设备 货架(重) 导入成功<br/>90、设备 工作台(金工间) 导入成功<', 0, '', '2025-02-13 16:29:31', 2228);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889960170474962945, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, 'java.lang.NoSuchMethodError: org.dromara.eims.domain.vo.EimsEquImportVo.getPurchaseDate()Ljava/util/Date;', '2025-02-13 16:49:53', 68);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889960608494628865, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 325 条数据格式不正确,错误如下:<br/>1、设备 电子镇流器节能灯输入特性分析仪GPA2001G004 已存在<br/>2、设备 老化台 导入失败:No format fit for date String [2002-03] !<br/>3、设备 低温恒温槽GPA2002E006 已存在<br/>4、设备 漏电流测试仪GPA2004H024 已存在<br/>5、设备 耐电压测试仪GPA2004H026 已存在<br/>6、设备 LCR数字电桥GPA2005H027 已存在<br/>7、设备 耐电压测试仪GPA2006H028 已存在<br/>8、设备 耐电压测试仪GPA2004H028 已存在<br/>9、设备 电子负载GPG2010WL003 已存在<br/>10、设备 交流测试仪GPA2007H048 已存在<br/>11、设备 交流测试仪GPA2007H049 已存在<br/>12、设备 泰克示波器GPG2010WL001 已存在<br/>13、设备 泰克示波器GPA2007F052 已存在<br/>14、设备 冲击耐压试验仪GPA2007D053 已存在<br/>15、设备 高加速度冲击实验系统GPA2007E001 已存在<br/>16、设备 静电放电发生器GPA2007E055 已存在<br/>17、设备 喷水实验仪GPA2007E056 已存在<br/>18、设备 机械振动台GPA2007E002 已存在<br/>19、设备 群脉冲发生器GPA2007D058 已存在<br/>20、设备 恒温水槽GPA2007G059 已存在<br/>21、设备 炉温测试仪GPA2008E061 已存在<br/>22、设备 数字存储示波器GPA2008H062 已存在<br/>23、设备 频率计数器GPA2008G063 已存在<br/>24、设备 交流测试仪GPA2008H064 已存在<br/>25、设备 交流测试仪GPA2008H065 已存在<br/>26、设备 交流测试仪GPA2008H066 已存在<br/>27、设备 交流测试仪GPA2008H067 已存在<br/>28、设备 交流测试仪GPA2008H068 已存在<br/>29、设备 交流测试仪GPA2008H069 已存在<br/>30、设备 LCR数字电桥GPA2008WL070 已存在<br/>31、设备 DC高精度传感器测试仪GPA2008G073 已存在<br/>32、设备 DC高精度传感器测试仪GPA2008G075 已存在<br/>33、设备 DC高精度传感器测试仪GPA2008G076 已存在<br/>34、设备 DC高精度传感器测试仪GPA2008G078 已存在<br/>35、设备 数字存储示波器GPA2008H079 已存在<br/>36、设备 数字存储示波器GPA2008H080 已存在<br/>37、设备 数字存储示波器GPA2008WL017 已存在<br/>38、设备 数字存储示波器GPA2008H082 已存在<br/>39、设备 示波器 导入失败:No format fit for date String [09-09-08] !<br/>40、设备 示波器 导入失败:No format fit for date String [09-09-08] !<br/>41、设备 直流电源 导入失败:No format fit for date String [09-09-08] !<br/>42、设备 频普分析仪 导入失败:No format fit for date String [09-09-08] !<br/>43、设备 数字示波器 导入失败:No format fit for date String [09-12-24] !<br/>44、设备 高频测试台 导入失败:No format fit for date String [09-11-10] !<br/>45、设备 低频测试台 导入失败:No format fit for date String [09-11-10] !<br/>46、设备 数字示波器 导入失败:No format fit for date String [10-01-06] !<br/>47、设备 张力计 导入失败:No format fit for date String [10-01-22] !<br/>48、设备 逻辑分析仪 导入失败:No format fit for date String [10-02-02] !<br/>49、设备 耐压力测试仪 导入失败:No format fit for date String [10-06-05] !<br/>50、设备', '2025-02-13 16:51:37', 14313);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889963232417611777, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 48 条数据格式不正确,错误如下:<br/>1、设备 卧式金属带锯床 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'profile\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, status, location, contact_phone, seller, profile, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'profile\' at row 1\n; Data truncation: Data too long for column \'profile\' at row 1<br/>2、设备 EMC实验室全木工作台 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'model_no\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, status, location, seller, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'model_no\' at row 1\n; Data truncation: Data too long for column \'model_no\' at row 1<br/>3、设备 烟气便携式分析仪GPA2015E002 已存在<br/>4、设备 全自动传感器测试仪GPA2018NL020 已存在<br/>5、设备 全自动传感器测试仪GPA2018NL021 已存在<br/>6、设备 反射率测定仪GPA2019NL001 已存在<br/>7、设备 10.4寸电容一体机GPC2019NL002 已存在<br/>8、设备 无线二维码扫描设备GPC2019NL003 已存在<br/>9、设备 电动铭牌刻字机GPC2019NH001 已存在<br/>10、设备 无线二维码扫描设备GPC2019NL005 已存在<br', '2025-02-13 17:02:03', 23364);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889970962599575554, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 48 条数据格式不正确,错误如下:<br/>1、设备 卧式金属带锯床 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'profile\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, status, location, contact_phone, seller, profile, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'profile\' at row 1\n; Data truncation: Data too long for column \'profile\' at row 1<br/>2、设备 EMC实验室全木工作台 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'model_no\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, status, location, seller, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'model_no\' at row 1\n; Data truncation: Data too long for column \'model_no\' at row 1<br/>3、设备 烟气便携式分析仪GPA2015E002 已存在<br/>4、设备 全自动传感器测试仪GPA2018NL020 已存在<br/>5、设备 全自动传感器测试仪GPA2018NL021 已存在<br/>6、设备 反射率测定仪GPA2019NL001 已存在<br/>7、设备 10.4寸电容一体机GPC2019NL002 已存在<br/>8、设备 无线二维码扫描设备GPC2019NL003 已存在<br/>9、设备 电动铭牌刻字机GPC2019NH001 已存在<br/>10、设备 无线二维码扫描设备GPC2019NL005 已存在<br', '2025-02-13 17:32:46', 13580);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889971648133398530, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 46 条数据格式不正确,错误如下:<br/>1、设备 EMC实验室全木工作台 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'model_no\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, status, location, seller, unit, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column \'model_no\' at row 1\n; Data truncation: Data too long for column \'model_no\' at row 1<br/>2、设备 烟气便携式分析仪GPA2015E002 已存在<br/>3、设备 全自动传感器测试仪GPA2018NL020 已存在<br/>4、设备 全自动传感器测试仪GPA2018NL021 已存在<br/>5、设备 反射率测定仪GPA2019NL001 已存在<br/>6、设备 10.4寸电容一体机GPC2019NL002 已存在<br/>7、设备 无线二维码扫描设备GPC2019NL003 已存在<br/>8、设备 电动铭牌刻字机GPC2019NH001 已存在<br/>9、设备 无线二维码扫描设备GPC2019NL005 已存在<br/>10、设备 无线二维码扫描设备GPC2019NL006 已存在<br/>11、设备 无线二维码扫描设备GPC2019NL007 已存在<br/>12、设备 铝型材推车GPB2019NL001 已存在<br/>13、设备 铝型材推车GPB2019NL002 已存在<br/>14、设备 车间小推车GPD2019NL010 已存在<br/>15、设备 加速度冲击测试系统GPA2018NL027 已存在<br/>16、设备 读码器GPC2019NL011 已存在<br/>17、设备 车间小推车GPD2019NL011 已存在<br/>18、设备 车间小推车GPD2019NL012 已存在<br/>19、设备 读码器GPC2019NL012 已存在<br/>20、设备 触摸屏GPC2019NL013 已存在<br/>21、设备 车间小推车GPD2019NL014 已存在<br/>22、设备 高精度电动位移滑台GPD2018NL038 已存在<br/>23、设备 日本三丰数显游标卡尺GPG2019NL001 已存在<br/>24、设备 铝型材小推车GPB2019NL003 已存在<br/>25、设备 逆变式直流氩弧焊机GPC2019NH007 已存在<br/>26、设备 Winson手持扫码枪GPC2019NL015 已存在<br/>27、设备 反射率测定仪GPA2019NL001 已存在<br/>28、设备 Winson手持扫码枪GPC2019NL016 已存在<br/>29、设备 车间小推车GPD2019NL016 已存在<br/>30、设备 车间小推车GPD2019NL017 已存在<br/>31、设备 车间小推车GPD2019NL018 已存在<br/>32、设备 车间小推车GPD2019NL019 已存在<br/>33、设备 电源 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.My', '2025-02-13 17:35:30', 18106);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889973977997967361, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.EimsEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1889971572669480961\",\"equCode\":null,\"equTypeId\":0,\"assetNo\":\"GPA2001G004\",\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"modelNo\":\"PF9810A\",\"madeIn\":\"杭州远方仪器有限公司\",\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":null,\"status\":\"0\",\"location\":\"生产技术部\",\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":\"\",\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null,\"seller\":null,\"unit\":null,\"handleUser\":null,\"purchaseUser\":null,\"attachments\":null,\"profile\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-13 17:44:45', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1889983876379217921, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 44 条数据格式不正确,错误如下:<br/>1、设备 烟气便携式分析仪GPA2015E002 已存在<br/>2、设备 全自动传感器测试仪GPA2018NL020 已存在<br/>3、设备 全自动传感器测试仪GPA2018NL021 已存在<br/>4、设备 反射率测定仪GPA2019NL001 已存在<br/>5、设备 10.4寸电容一体机GPC2019NL002 已存在<br/>6、设备 无线二维码扫描设备GPC2019NL003 已存在<br/>7、设备 电动铭牌刻字机GPC2019NH001 已存在<br/>8、设备 无线二维码扫描设备GPC2019NL005 已存在<br/>9、设备 无线二维码扫描设备GPC2019NL006 已存在<br/>10、设备 无线二维码扫描设备GPC2019NL007 已存在<br/>11、设备 铝型材推车GPB2019NL001 已存在<br/>12、设备 铝型材推车GPB2019NL002 已存在<br/>13、设备 车间小推车GPD2019NL010 已存在<br/>14、设备 加速度冲击测试系统GPA2018NL027 已存在<br/>15、设备 读码器GPC2019NL011 已存在<br/>16、设备 车间小推车GPD2019NL011 已存在<br/>17、设备 车间小推车GPD2019NL012 已存在<br/>18、设备 读码器GPC2019NL012 已存在<br/>19、设备 触摸屏GPC2019NL013 已存在<br/>20、设备 车间小推车GPD2019NL014 已存在<br/>21、设备 高精度电动位移滑台GPD2018NL038 已存在<br/>22、设备 日本三丰数显游标卡尺GPG2019NL001 已存在<br/>23、设备 铝型材小推车GPB2019NL003 已存在<br/>24、设备 逆变式直流氩弧焊机GPC2019NH007 已存在<br/>25、设备 Winson手持扫码枪GPC2019NL015 已存在<br/>26、设备 反射率测定仪GPA2019NL001 已存在<br/>27、设备 Winson手持扫码枪GPC2019NL016 已存在<br/>28、设备 车间小推车GPD2019NL016 已存在<br/>29、设备 车间小推车GPD2019NL017 已存在<br/>30、设备 车间小推车GPD2019NL018 已存在<br/>31、设备 车间小推车GPD2019NL019 已存在<br/>32、设备 戴尔电脑(显示器)GPC2022NH056 已存在<br/>33、设备 工作台GPD2022NL228 已存在<br/>34、设备 松京除湿机GPC2022NA046 已存在<br/>35、设备 松京除湿机GPC2022NA047 已存在<br/>36、设备 松京除湿机GPC2022NA048 已存在<br/>37、设备 中型货架GPD2022NA194 已存在<br/>38、设备 中型货架GPD2023NL021 已存在<br/>39、设备 大理石平台架GPD2023NL036 已存在<br/>40、设备 大理石平台架GPD2023NL037 已存在<br/>41、设备 工作台GPD2023NL156 已存在<br/>42、设备 GPA2023NL070-077生产制造部 已存在<br/>43、设备 GPA2023NL070-077生产制造部 已存在<br/>44、设备 GPA2023NL070-077生产制造部 已存在', '2025-02-13 18:24:05', 17609);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890196258112221186, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 47 条数据格式不正确,错误如下:<br/>1、设备 烟气便携式分析仪GPA2015E002 已存在<br/>2、设备 全自动传感器测试仪GPA2018NL020 已存在<br/>3、设备 全自动传感器测试仪GPA2018NL021 已存在<br/>4、设备 反射率测定仪GPA2019NL001 已存在<br/>5、设备 10.4寸电容一体机GPC2019NL002 已存在<br/>6、设备 无线二维码扫描设备GPC2019NL003 已存在<br/>7、设备 电动铭牌刻字机GPC2019NH001 已存在<br/>8、设备 无线二维码扫描设备GPC2019NL005 已存在<br/>9、设备 无线二维码扫描设备GPC2019NL006 已存在<br/>10、设备 无线二维码扫描设备GPC2019NL007 已存在<br/>11、设备 铝型材推车GPB2019NL001 已存在<br/>12、设备 铝型材推车GPB2019NL002 已存在<br/>13、设备 车间小推车GPD2019NL010 已存在<br/>14、设备 加速度冲击测试系统GPA2018NL027 已存在<br/>15、设备 读码器GPC2019NL011 已存在<br/>16、设备 车间小推车GPD2019NL011 已存在<br/>17、设备 车间小推车GPD2019NL012 已存在<br/>18、设备 读码器GPC2019NL012 已存在<br/>19、设备 触摸屏GPC2019NL013 已存在<br/>20、设备 车间小推车GPD2019NL014 已存在<br/>21、设备 高精度电动位移滑台GPD2018NL038 已存在<br/>22、设备 日本三丰数显游标卡尺GPG2019NL001 已存在<br/>23、设备 铝型材小推车GPB2019NL003 已存在<br/>24、设备 逆变式直流氩弧焊机GPC2019NH007 已存在<br/>25、设备 Winson手持扫码枪GPC2019NL015 已存在<br/>26、设备 反射率测定仪GPA2019NL001 已存在<br/>27、设备 Winson手持扫码枪GPC2019NL016 已存在<br/>28、设备 车间小推车GPD2019NL016 已存在<br/>29、设备 车间小推车GPD2019NL017 已存在<br/>30、设备 车间小推车GPD2019NL018 已存在<br/>31、设备 车间小推车GPD2019NL019 已存在<br/>32、设备 C02激光切割机 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Incorrect date value: \'20201-10-19 00:00:00\' for column \'actual_accept_date\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, actual_accept_date, seller, profile, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Incorrect date value: \'20201-10-19 00:00:00\' for column \'actual_accept_date\' at row 1\n; Data truncation: Incorrect date value: ', '2025-02-14 08:28:01', 14116);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890198305565904897, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 44 条数据格式不正确,错误如下:<br/>1、设备 烟气便携式分析仪GPA2015E002 已存在<br/>2、设备 全自动传感器测试仪GPA2018NL020 已存在<br/>3、设备 全自动传感器测试仪GPA2018NL021 已存在<br/>4、设备 反射率测定仪GPA2019NL001 已存在<br/>5、设备 10.4寸电容一体机GPC2019NL002 已存在<br/>6、设备 无线二维码扫描设备GPC2019NL003 已存在<br/>7、设备 电动铭牌刻字机GPC2019NH001 已存在<br/>8、设备 无线二维码扫描设备GPC2019NL005 已存在<br/>9、设备 无线二维码扫描设备GPC2019NL006 已存在<br/>10、设备 无线二维码扫描设备GPC2019NL007 已存在<br/>11、设备 铝型材推车GPB2019NL001 已存在<br/>12、设备 铝型材推车GPB2019NL002 已存在<br/>13、设备 车间小推车GPD2019NL010 已存在<br/>14、设备 加速度冲击测试系统GPA2018NL027 已存在<br/>15、设备 读码器GPC2019NL011 已存在<br/>16、设备 车间小推车GPD2019NL011 已存在<br/>17、设备 车间小推车GPD2019NL012 已存在<br/>18、设备 读码器GPC2019NL012 已存在<br/>19、设备 触摸屏GPC2019NL013 已存在<br/>20、设备 车间小推车GPD2019NL014 已存在<br/>21、设备 高精度电动位移滑台GPD2018NL038 已存在<br/>22、设备 日本三丰数显游标卡尺GPG2019NL001 已存在<br/>23、设备 铝型材小推车GPB2019NL003 已存在<br/>24、设备 逆变式直流氩弧焊机GPC2019NH007 已存在<br/>25、设备 Winson手持扫码枪GPC2019NL015 已存在<br/>26、设备 反射率测定仪GPA2019NL001 已存在<br/>27、设备 Winson手持扫码枪GPC2019NL016 已存在<br/>28、设备 车间小推车GPD2019NL016 已存在<br/>29、设备 车间小推车GPD2019NL017 已存在<br/>30、设备 车间小推车GPD2019NL018 已存在<br/>31、设备 车间小推车GPD2019NL019 已存在<br/>32、设备 戴尔电脑(显示器)GPC2022NH056 已存在<br/>33、设备 工作台GPD2022NL228 已存在<br/>34、设备 松京除湿机GPC2022NA046 已存在<br/>35、设备 松京除湿机GPC2022NA047 已存在<br/>36、设备 松京除湿机GPC2022NA048 已存在<br/>37、设备 中型货架GPD2022NA194 已存在<br/>38、设备 中型货架GPD2023NL021 已存在<br/>39、设备 大理石平台架GPD2023NL036 已存在<br/>40、设备 大理石平台架GPD2023NL037 已存在<br/>41、设备 工作台GPD2023NL156 已存在<br/>42、设备 GPA2023NL070-077生产制造部 已存在<br/>43、设备 GPA2023NL070-077生产制造部 已存在<br/>44、设备 GPA2023NL070-077生产制造部 已存在', '2025-02-14 08:36:09', 14586);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890198896081965058, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 47 条数据格式不正确,错误如下:<br/>1、设备 烟气便携式分析仪GPA2015E002 已存在<br/>2、设备 全自动传感器测试仪GPA2018NL020 已存在<br/>3、设备 全自动传感器测试仪GPA2018NL021 已存在<br/>4、设备 反射率测定仪GPA2019NL001 已存在<br/>5、设备 10.4寸电容一体机GPC2019NL002 已存在<br/>6、设备 无线二维码扫描设备GPC2019NL003 已存在<br/>7、设备 电动铭牌刻字机GPC2019NH001 已存在<br/>8、设备 无线二维码扫描设备GPC2019NL005 已存在<br/>9、设备 无线二维码扫描设备GPC2019NL006 已存在<br/>10、设备 无线二维码扫描设备GPC2019NL007 已存在<br/>11、设备 铝型材推车GPB2019NL001 已存在<br/>12、设备 铝型材推车GPB2019NL002 已存在<br/>13、设备 车间小推车GPD2019NL010 已存在<br/>14、设备 加速度冲击测试系统GPA2018NL027 已存在<br/>15、设备 读码器GPC2019NL011 已存在<br/>16、设备 车间小推车GPD2019NL011 已存在<br/>17、设备 车间小推车GPD2019NL012 已存在<br/>18、设备 读码器GPC2019NL012 已存在<br/>19、设备 触摸屏GPC2019NL013 已存在<br/>20、设备 车间小推车GPD2019NL014 已存在<br/>21、设备 高精度电动位移滑台GPD2018NL038 已存在<br/>22、设备 日本三丰数显游标卡尺GPG2019NL001 已存在<br/>23、设备 铝型材小推车GPB2019NL003 已存在<br/>24、设备 逆变式直流氩弧焊机GPC2019NH007 已存在<br/>25、设备 Winson手持扫码枪GPC2019NL015 已存在<br/>26、设备 反射率测定仪GPA2019NL001 已存在<br/>27、设备 Winson手持扫码枪GPC2019NL016 已存在<br/>28、设备 车间小推车GPD2019NL016 已存在<br/>29、设备 车间小推车GPD2019NL017 已存在<br/>30、设备 车间小推车GPD2019NL018 已存在<br/>31、设备 车间小推车GPD2019NL019 已存在<br/>32、设备 C02激光切割机 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Incorrect date value: \'20201-10-19 00:00:00\' for column \'actual_accept_date\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, actual_accept_date, seller, profile, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Incorrect date value: \'20201-10-19 00:00:00\' for column \'actual_accept_date\' at row 1\n; Data truncation: Incorrect date value: ', '2025-02-14 08:38:30', 26014);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890201270099972097, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 2691 条数据格式不正确,错误如下:<br/>1、设备 电子镇流器节能灯输入特性分析仪GPA2001G004 已存在<br/>2、设备 老化台GPA2002G005 已存在<br/>3、设备 低温恒温槽GPA2002E006 已存在<br/>4、设备 漏电流测试仪GPA2004H024 已存在<br/>5、设备 耐电压测试仪GPA2004H026 已存在<br/>6、设备 LCR数字电桥GPA2005H027 已存在<br/>7、设备 耐电压测试仪GPA2006H028 已存在<br/>8、设备 耐电压测试仪GPA2004H028 已存在<br/>9、设备 电子负载GPG2010WL003 已存在<br/>10、设备 交流测试仪GPA2007H048 已存在<br/>11、设备 交流测试仪GPA2007H049 已存在<br/>12、设备 泰克示波器GPG2010WL001 已存在<br/>13、设备 泰克示波器GPA2007F052 已存在<br/>14、设备 冲击耐压试验仪GPA2007D053 已存在<br/>15、设备 高加速度冲击实验系统GPA2007E001 已存在<br/>16、设备 静电放电发生器GPA2007E055 已存在<br/>17、设备 喷水实验仪GPA2007E056 已存在<br/>18、设备 机械振动台GPA2007E002 已存在<br/>19、设备 群脉冲发生器GPA2007D058 已存在<br/>20、设备 恒温水槽GPA2007G059 已存在<br/>21、设备 炉温测试仪GPA2008E061 已存在<br/>22、设备 数字存储示波器GPA2008H062 已存在<br/>23、设备 频率计数器GPA2008G063 已存在<br/>24、设备 交流测试仪GPA2008H064 已存在<br/>25、设备 交流测试仪GPA2008H065 已存在<br/>26、设备 交流测试仪GPA2008H066 已存在<br/>27、设备 交流测试仪GPA2008H067 已存在<br/>28、设备 交流测试仪GPA2008H068 已存在<br/>29、设备 交流测试仪GPA2008H069 已存在<br/>30、设备 LCR数字电桥GPA2008WL070 已存在<br/>31、设备 DC高精度传感器测试仪GPA2008G073 已存在<br/>32、设备 DC高精度传感器测试仪GPA2008G075 已存在<br/>33、设备 DC高精度传感器测试仪GPA2008G076 已存在<br/>34、设备 DC高精度传感器测试仪GPA2008G078 已存在<br/>35、设备 数字存储示波器GPA2008H079 已存在<br/>36、设备 数字存储示波器GPA2008H080 已存在<br/>37、设备 数字存储示波器GPA2008WL017 已存在<br/>38、设备 数字存储示波器GPA2008H082 已存在<br/>39、设备 可程式高低温实验机GPA2008D083 已存在<br/>40、设备 程控变频电源GPA2009H084 已存在<br/>41、设备 手动液压泵GPA2009G085 已存在<br/>42、设备 释放阀GPA2009G086 已存在<br/>43、设备 示波器GPA2009H097 已存在<br/>44、设备 示波器GPA2009G098 已存在<br/>45、设备 直流电源GPA2009G099 已存在<br/>46、设备 频普分析仪GPA2009F100 已存在<br/>47、设备 数字示波器GPA2009H101 已存在<br/>48、设备 高频测试台GPA2009H102 已存在<br/>49、设备 低频测试台GPA2009H103 已存在<br/>50、设备 数字示波器GPA2010H104 已存在<br/>51、设备 张力计GPA2010G105 已存在<br/>52、设备 逻辑分析仪GPA2010C106 已存在<br/>53、设备 耐压力测试仪GPA2010G107 已存在<br/>54、设备 耐电压测试仪GPA2006H108 已存在<br/>55、设备 耐电压测试仪GPA2006H109 已存在<br/>56、设备 高精度传感器测试仪GPA2010H110 已存在<br/>57、设备 高精度传感器测试仪GPA2010H111 已存在<br/>58、设备 高精度传感器测试仪GPA2010H112 已存在<br/>59、设备 高精度传感器测试仪GPA2010H113 已存在<br/>60、设备 高精度传感器测试仪GPA2010H114 已存在<br/>61、设备 高精度传感器测试仪GPA2010H117 已存在<br', '2025-02-14 08:47:56', 26516);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890204668291518466, '000000', '字典类型', 1, 'org.dromara.system.controller.system.SysDictTypeController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/type', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":null,\"dictName\":\"设备导入状态\",\"dictType\":\"equ_import_status\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 09:01:26', 33);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890205043954356226, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":0,\"dictLabel\":\"新导入\",\"dictValue\":\"0\",\"dictType\":\"equ_import_status\",\"cssClass\":null,\"listClass\":\"orange\",\"isDefault\":null,\"remark\":\"设备首次导入状态,首次盘点后修改为已确认\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 09:02:55', 23);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890205092314681346, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":1,\"dictLabel\":\"已确认\",\"dictValue\":\"1\",\"dictType\":\"equ_import_status\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 09:03:07', 17);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890217901936181249, '000000', '设备管理', 6, 'org.dromara.eims.controller.EimsEquController.importData()', 'POST', 1, 'admin', '研发部门', '/eims/equ/importData', '0:0:0:0:0:0:0:1', '内网IP', 'false', '', 1, '很抱歉,导入失败!共 47 条数据格式不正确,错误如下:<br/>1、设备 烟气便携式分析仪GPA2015E002 已存在<br/>2、设备 全自动传感器测试仪GPA2018NL020 已存在<br/>3、设备 全自动传感器测试仪GPA2018NL021 已存在<br/>4、设备 反射率测定仪GPA2019NL001 已存在<br/>5、设备 10.4寸电容一体机GPC2019NL002 已存在<br/>6、设备 无线二维码扫描设备GPC2019NL003 已存在<br/>7、设备 电动铭牌刻字机GPC2019NH001 已存在<br/>8、设备 无线二维码扫描设备GPC2019NL005 已存在<br/>9、设备 无线二维码扫描设备GPC2019NL006 已存在<br/>10、设备 无线二维码扫描设备GPC2019NL007 已存在<br/>11、设备 铝型材推车GPB2019NL001 已存在<br/>12、设备 铝型材推车GPB2019NL002 已存在<br/>13、设备 车间小推车GPD2019NL010 已存在<br/>14、设备 加速度冲击测试系统GPA2018NL027 已存在<br/>15、设备 读码器GPC2019NL011 已存在<br/>16、设备 车间小推车GPD2019NL011 已存在<br/>17、设备 车间小推车GPD2019NL012 已存在<br/>18、设备 读码器GPC2019NL012 已存在<br/>19、设备 触摸屏GPC2019NL013 已存在<br/>20、设备 车间小推车GPD2019NL014 已存在<br/>21、设备 高精度电动位移滑台GPD2018NL038 已存在<br/>22、设备 日本三丰数显游标卡尺GPG2019NL001 已存在<br/>23、设备 铝型材小推车GPB2019NL003 已存在<br/>24、设备 逆变式直流氩弧焊机GPC2019NH007 已存在<br/>25、设备 Winson手持扫码枪GPC2019NL015 已存在<br/>26、设备 反射率测定仪GPA2019NL001 已存在<br/>27、设备 Winson手持扫码枪GPC2019NL016 已存在<br/>28、设备 车间小推车GPD2019NL016 已存在<br/>29、设备 车间小推车GPD2019NL017 已存在<br/>30、设备 车间小推车GPD2019NL018 已存在<br/>31、设备 车间小推车GPD2019NL019 已存在<br/>32、设备 C02激光切割机 导入失败:\n### Error updating database. Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Incorrect date value: \'20201-10-19 00:00:00\' for column \'actual_accept_date\' at row 1\n### The error may exist in org/dromara/eims/mapper/EimsEquMapper.java (best guess)\n### The error may involve org.dromara.eims.mapper.EimsEquMapper.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO eims_equ ( equ_id, asset_no, equ_name, model_no, made_in, purchase_date, location, actual_accept_date, import_status, seller, profile, create_dept, create_by, create_time, update_by, update_time ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Incorrect date value: \'20201-10-19 00:00:00\' for column \'actual_accept_date\' at row 1\n; Data truncation: Incorr', '2025-02-14 09:54:01', 18355);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890218120568471554, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.EimsEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1890217827130769409\",\"equCode\":null,\"equTypeId\":1,\"assetNo\":\"GPA2001G004\",\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"modelNo\":\"PF9810A\",\"madeIn\":\"杭州远方仪器有限公司\",\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":\"2001-04-01\",\"status\":\"4\",\"location\":\"生产技术部\",\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":\"\",\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":null,\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null,\"seller\":null,\"unit\":null,\"handleUser\":null,\"purchaseUser\":null,\"attachments\":null,\"profile\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 09:54:53', 17);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890218318317322242, '000000', '盘点', 1, 'org.dromara.eims.controller.EimsInventoryController.add()', 'POST', 1, 'admin', '研发部门', '/eims/inventory', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"inventoryId\":\"1890218318216658946\",\"inventoryCode\":\"dfghjk\",\"inventoryName\":\"jfgbj\",\"equTypesList\":[\"1\",\"11\"],\"equStatusList\":[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\"],\"inventoryUser\":\"1889581724095836162\",\"userDept\":100,\"startDate\":\"2025-02-14\",\"endDate\":\"2025-02-14\",\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 09:55:40', 33);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890218356271579138, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1890218318275379202\",\"inventoryId\":\"1890218318216658946\",\"equId\":\"1890217827130769409\",\"status\":\"1\",\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 09:55:49', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890218632982396929, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1890218318275379202\",\"inventoryId\":\"1890218318216658946\",\"equId\":\"1890217827130769409\",\"status\":\"1\",\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 09:56:55', 19836);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890218719963873282, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":1,\"createTime\":\"2025-02-14 09:53:43\",\"updateBy\":1,\"updateTime\":\"2025-02-14 09:54:53\",\"id\":\"1890218318275379202\",\"inventoryId\":\"1890218318216658946\",\"equId\":\"1890217827130769409\",\"status\":\"4\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":1,\"location\":\"生产技术部\",\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 09:57:16', 25);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890219074747465729, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":1,\"createTime\":\"2025-02-14 09:53:43\",\"updateBy\":1,\"updateTime\":\"2025-02-14 09:54:53\",\"id\":\"1890218318275379202\",\"inventoryId\":\"1890218318216658946\",\"equId\":\"1890217827130769409\",\"status\":\"4\",\"remark\":null,\"equName\":\"电子镇流器节能灯输入特性分析仪\",\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":1,\"location\":\"生产技术部\",\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 09:58:41', 28545);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890219130221330434, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1890218318275379202\",\"inventoryId\":\"1890218318216658946\",\"equId\":\"1890217827130769409\",\"status\":\"0\",\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 09:58:54', 6);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890219160533565442, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1890218318275379202\",\"inventoryId\":\"1890218318216658946\",\"equId\":\"1890217827130769409\",\"status\":\"1\",\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 09:59:01', 18);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890219545486786562, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1890218318275379202\",\"inventoryId\":\"1890218318216658946\",\"equId\":\"1890217827130769409\",\"status\":\"0\",\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 10:00:33', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890220667932868609, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1890218318275379202\",\"inventoryId\":\"1890218318216658946\",\"equId\":\"1890217827130769409\",\"status\":\"1\",\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 10:05:00', 21);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890220686136147970, '000000', '盘点明细', 2, 'org.dromara.eims.controller.EimsInventoryDetailController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/inventoryDetail', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1890218318275379202\",\"inventoryId\":\"1890218318216658946\",\"equId\":\"1890217827130769409\",\"status\":\"0\",\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 10:05:05', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890221077229830146, '000000', '盘点明细', 5, 'org.dromara.eims.controller.EimsInventoryDetailController.export()', 'POST', 1, 'admin', '研发部门', '/eims/inventoryDetail/export', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":null,\"inventoryId\":null,\"equId\":null,\"status\":null,\"remark\":null,\"equName\":null,\"equCode\":null,\"equAssetNo\":null,\"deptName\":null,\"equTypeName\":null,\"equTypeId\":null,\"location\":null,\"equStatus\":null,\"inventoryUser\":null}', '', 0, '', '2025-02-14 10:06:38', 1113);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890262999780655106, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_fixture\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 12:53:13', 126);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890264219865939969, '000000', '代码生成', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-14 12:58:04\",\"params\":{\"parentMenuId\":0,\"popupComponent\":\"drawer\"},\"tableId\":\"1890262999453499393\",\"dataName\":\"master\",\"tableName\":\"eims_fixture\",\"tableComment\":\"工具(治具)台账\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsFixture\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"fixture\",\"functionName\":\"工具(治具)台账\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-14 12:58:04\",\"columnId\":\"1890262999663214593\",\"tableId\":\"1890262999453499393\",\"columnName\":\"id\",\"columnComment\":\"\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":true,\"usableColumn\":false,\"superColumn\":false,\"insert\":false,\"increment\":true,\"query\":false,\"pk\":true,\"edit\":true,\"list\":true,\"capJavaField\":\"Id\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-14 12:58:04\",\"columnId\":\"1890262999671603201\",\"tableId\":\"1890262999453499393\",\"columnName\":\"fixtrue_code\",\"columnComment\":\"治具编码\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"fixtrueCode\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"LIKE\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":false,\"usableColumn\":false,\"superColumn\":false,\"insert\":true,\"increment\":true,\"query\":true,\"pk\":false,\"edit\":true,\"list\":true,\"capJavaField\":\"FixtrueCode\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-14 12:58:04\",\"columnId\":\"1890262999675797505\",\"tableId\":\"1890262999453499393\",\"columnName\":\"fixtrue_name\",\"columnComment\":\"治具名称\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 12:58:04', 56);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890264549664063490, '000000', '字典类型', 1, 'org.dromara.system.controller.system.SysDictTypeController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/type', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":null,\"dictName\":\"工具(治具)类型\",\"dictType\":\"eims_fixtrue_type\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 12:59:23', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890264658145542145, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":1,\"dictLabel\":\"工具\",\"dictValue\":\"1\",\"dictType\":\"eims_fixtrue_type\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 12:59:49', 26);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890264696896716801, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":2,\"dictLabel\":\"治具\",\"dictValue\":\"2\",\"dictType\":\"eims_fixtrue_type\",\"cssClass\":null,\"listClass\":\"cyan\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 12:59:58', 32);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890265298716426241, '000000', '字典类型', 1, 'org.dromara.system.controller.system.SysDictTypeController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/type', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":null,\"dictName\":\"工具(治具)状态\",\"dictType\":\"eims_fixtrue_status\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:02:21', 17);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890265387878940673, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":0,\"dictLabel\":\"正常\",\"dictValue\":\"0\",\"dictType\":\"eims_fixtrue_status\",\"cssClass\":null,\"listClass\":\"success\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:02:43', 16);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890265467784626177, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":1,\"dictLabel\":\"停用\",\"dictValue\":\"1\",\"dictType\":\"eims_fixtrue_status\",\"cssClass\":null,\"listClass\":\"danger\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:03:02', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890265656922570754, '000000', '代码生成', 2, 'org.dromara.generator.controller.GenController.synchDb()', 'GET', 1, 'admin', '研发部门', '/tool/gen/synchDb/1890262999453499393', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:03:47', 106);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890265948133097474, '000000', '代码生成', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-14 13:04:56\",\"params\":{\"parentMenuId\":0,\"popupComponent\":\"drawer\"},\"tableId\":\"1890262999453499393\",\"dataName\":\"master\",\"tableName\":\"eims_fixture\",\"tableComment\":\"工具(治具)台账\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsFixture\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"fixture\",\"functionName\":\"工具(治具)台账\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-14 13:04:56\",\"columnId\":\"1890262999663214593\",\"tableId\":\"1890262999453499393\",\"columnName\":\"id\",\"columnComment\":\"\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":true,\"usableColumn\":false,\"superColumn\":false,\"insert\":false,\"increment\":true,\"query\":false,\"pk\":true,\"edit\":true,\"list\":true,\"capJavaField\":\"Id\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-14 13:04:56\",\"columnId\":\"1890262999671603201\",\"tableId\":\"1890262999453499393\",\"columnName\":\"fixtrue_code\",\"columnComment\":\"治具编码\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"fixtrueCode\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"0\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"LIKE\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":false,\"usableColumn\":false,\"superColumn\":false,\"insert\":true,\"increment\":true,\"query\":true,\"pk\":false,\"edit\":true,\"list\":true,\"capJavaField\":\"FixtrueCode\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-14 13:04:56\",\"columnId\":\"1890262999675797505\",\"tableId\":\"1890262999453499393\",\"columnName\":\"fixtrue_name\",\"columnComment\":\"治具名称\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:04:56', 22);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890265975270244353, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1890262999453499393\"}', '', 0, '', '2025-02-14 13:05:03', 81);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890266425386172418, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1890265974959865858\",\"parentId\":0,\"menuName\":\"工具台账\",\"orderNum\":1,\"path\":\"fixture\",\"component\":\"eims/fixture/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixture:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:06:50', 21);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890266548212170754, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1888814115854311426\",\"parentId\":0,\"menuName\":\"设备维修\",\"orderNum\":3,\"path\":\"repair\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"lucide:book-open-text\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:07:19', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890266675832258562, '000000', '菜单管理', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":0,\"menuName\":\"工具管理\",\"orderNum\":2,\"path\":\"fixtrue\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:07:50', 16);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890266761479946242, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1890265974959865858\",\"parentId\":\"1890266675786121217\",\"menuName\":\"工具台账\",\"orderNum\":1,\"path\":\"fixture\",\"component\":\"eims/fixture/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixture:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:08:10', 20);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890266883248979970, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1890266675786121217\",\"parentId\":0,\"menuName\":\"工具管理\",\"orderNum\":2,\"path\":\"fixtrue\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"carbon:model-alt\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 13:08:39', 21);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890304491882651649, '000000', '字典类型', 2, 'org.dromara.system.controller.system.SysDictTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/type', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":\"1890265298657705985\",\"dictName\":\"工具(治具)状态\",\"dictType\":\"eims_fixture_status\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 15:38:06', 75);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1890304533167185921, '000000', '字典类型', 2, 'org.dromara.system.controller.system.SysDictTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/type', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":\"1890264549630509057\",\"dictName\":\"工具(治具)类型\",\"dictType\":\"eims_fixture_type\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-14 15:38:16', 19);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891294374445051906, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1890265974959865858\",\"parentId\":\"1890266675786121217\",\"menuName\":\"工具台账\",\"orderNum\":1,\"path\":\"index\",\"component\":\"eims/fixture/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixture:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 09:11:32', 49);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891318327611879425, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_fixture_type\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 10:46:43', 183);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891319443938471938, '000000', '代码生成', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-17 10:51:09\",\"params\":{\"treeCode\":\"id\",\"treeName\":\"type_name\",\"treeParentCode\":\"parent_id\",\"parentMenuId\":\"1890266675786121217\",\"popupComponent\":\"drawer\"},\"tableId\":\"1891318327058231298\",\"dataName\":\"master\",\"tableName\":\"eims_fixture_type\",\"tableComment\":\"工具类型\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsFixtureType\",\"tplCategory\":\"tree\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"fixtureType\",\"functionName\":\"工具类型\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-17 10:51:09\",\"columnId\":\"1891318327402164225\",\"tableId\":\"1891318327058231298\",\"columnName\":\"id\",\"columnComment\":\"\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":true,\"list\":true,\"pk\":true,\"edit\":true,\"increment\":true,\"query\":false,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"capJavaField\":\"Id\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-17 10:51:09\",\"columnId\":\"1891318327414747138\",\"tableId\":\"1891318327058231298\",\"columnName\":\"type_name\",\"columnComment\":\"类型名称\",\"columnType\":\"varchar\",\"javaType\":\"String\",\"javaField\":\"typeName\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"LIKE\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":true,\"list\":true,\"pk\":false,\"edit\":true,\"increment\":true,\"query\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"capJavaField\":\"TypeName\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-17 10:51:09\",\"columnId\":\"1891318327418941442\",\"tableId\":\"1891318327058231298\",\"columnName\":\"type_co', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 10:51:09', 56);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891320718889447426, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1891318327058231298\"}', '', 0, '', '2025-02-17 10:56:13', 229);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891346047737655298, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1891320717983477762\",\"parentId\":\"1890266675786121217\",\"menuName\":\"工具类型\",\"orderNum\":1,\"path\":\"fixtureType\",\"component\":\"eims/fixture-type/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixtureType:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:36:52', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891346631681220609, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891346631324704769\",\"typeName\":\"工具\",\"typeCode\":\"tool\",\"parentId\":0,\"orderNum\":1,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:39:11', 65);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891346744398946306, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891346744369586178\",\"typeName\":\"治具\",\"typeCode\":\"jig\",\"parentId\":0,\"orderNum\":2,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:39:38', 6);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891348168348377089, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348168285462529\",\"typeName\":\"定位治具\",\"typeCode\":\"1\",\"parentId\":\"1891346631324704769\",\"orderNum\":1,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:45:18', 16);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891348265110970369, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348168285462529\",\"typeName\":\"定位治具\",\"typeCode\":\"dw\",\"parentId\":\"1891346631324704769\",\"orderNum\":1,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:45:41', 18);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891348349387120641, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348349345177601\",\"typeName\":\"焊接治具\",\"typeCode\":\"hj\",\"parentId\":\"1891346631324704769\",\"orderNum\":2,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:46:01', 6);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891348417997545474, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348417930436609\",\"typeName\":\"测试治具\",\"typeCode\":\"cs\",\"parentId\":\"1891346631324704769\",\"orderNum\":3,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:46:17', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891348439375912961, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348168285462529\",\"typeName\":\"定位治具\",\"typeCode\":\"dw\",\"parentId\":\"1891346744369586178\",\"orderNum\":1,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:46:22', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891348465435123714, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348349345177601\",\"typeName\":\"焊接治具\",\"typeCode\":\"hj\",\"parentId\":\"1891346744369586178\",\"orderNum\":2,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:46:28', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891348482489163778, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348417930436609\",\"typeName\":\"测试治具\",\"typeCode\":\"cs\",\"parentId\":\"1891346744369586178\",\"orderNum\":3,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:46:32', 14);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891348560784236546, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348560738099201\",\"typeName\":\"校准治具\",\"typeCode\":\"jz\",\"parentId\":\"1891346744369586178\",\"orderNum\":4,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:46:51', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891348638055899137, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348349345177601\",\"typeName\":\"焊接治具\",\"typeCode\":\"hj\",\"parentId\":\"1891346744369586178\",\"orderNum\":2,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:47:10', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891349293747249154, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348417930436609\",\"typeName\":\"测试治具\",\"typeCode\":\"cs\",\"parentId\":\"1891346744369586178\",\"orderNum\":3,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:49:46', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891349329260421121, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891348560738099201\",\"typeName\":\"校准治具\",\"typeCode\":\"jz\",\"parentId\":\"1891346744369586178\",\"orderNum\":4,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:49:54', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891349578058145793, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891349577999425537\",\"typeName\":\"组装治具\",\"typeCode\":\"zz\",\"parentId\":\"1891346744369586178\",\"orderNum\":5,\"menuType\":\"C\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:50:54', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891349685491048450, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891349685461688322\",\"typeName\":\"手动工具\",\"typeCode\":\"sd\",\"parentId\":\"1891346631324704769\",\"orderNum\":1,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:51:19', 7);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891349784598257666, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891349784564703233\",\"typeName\":\"电动工具\",\"typeCode\":\"dd\",\"parentId\":\"1891346631324704769\",\"orderNum\":2,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:51:43', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891349987355107330, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891349987325747202\",\"typeName\":\"检测工具\",\"typeCode\":\"jc\",\"parentId\":\"1891346631324704769\",\"orderNum\":3,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:52:31', 7);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891350059933343745, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891350059899789314\",\"typeName\":\"专用工具\",\"typeCode\":\"zy\",\"parentId\":0,\"orderNum\":4,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:52:49', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891350110625701890, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891350059899789314\",\"typeName\":\"专用工具\",\"typeCode\":\"zy\",\"parentId\":\"1891346631324704769\",\"orderNum\":4,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:53:01', 5);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891350205031096322, '000000', '工具类型', 1, 'org.dromara.eims.controller.EimsFixtureTypeController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891350204989153281\",\"typeName\":\"清洁工具\",\"typeCode\":\"qj\",\"parentId\":\"1891346631324704769\",\"orderNum\":5,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:53:23', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891351424881500161, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891346744369586178\",\"typeName\":\"治具\",\"typeCode\":\"jig\",\"parentId\":0,\"orderNum\":2,\"menuType\":\"M\",\"icon\":null,\"status\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:58:14', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891351467919253506, '000000', '工具类型', 2, 'org.dromara.eims.controller.EimsFixtureTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixtureType', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891346744369586178\",\"typeName\":\"治具\",\"typeCode\":\"jig\",\"parentId\":0,\"orderNum\":2,\"menuType\":\"M\",\"icon\":null,\"status\":\"0\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 12:58:24', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891360484339068929, '000000', '工具(治具)台账', 1, 'org.dromara.eims.controller.EimsFixtureController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixture', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891360483990941697\",\"fixtureCode\":\"123456\",\"fixtureName\":\"手动扳手\",\"fixtureType\":\"1891349685461688322\",\"fixtureDesc\":null,\"borrowDept\":null,\"borrowUser\":null,\"status\":\"0\",\"assetNo\":\"123456\",\"modelNo\":\"123\",\"specNo\":\"12\",\"madeIn\":\"12\",\"purchaseDate\":\"2025-02-17\",\"deployDate\":\"2025-02-17\",\"serviceLife\":6,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 13:34:14', 58);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891360617441112066, '000000', '工具(治具)台账', 2, 'org.dromara.eims.controller.EimsFixtureController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixture', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891360483990941697\",\"fixtureCode\":\"123456\",\"fixtureName\":\"手动扳手2\",\"fixtureType\":\"1891349685461688322\",\"fixtureDesc\":null,\"borrowDept\":null,\"borrowUser\":null,\"status\":\"0\",\"assetNo\":\"123456\",\"modelNo\":\"123\",\"specNo\":\"12\",\"madeIn\":\"12\",\"purchaseDate\":\"2025-02-17\",\"deployDate\":\"2025-02-17\",\"serviceLife\":6,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 13:34:46', 17);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891365808840146946, '000000', '工具(治具)台账', 1, 'org.dromara.eims.controller.EimsFixtureController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixture', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891365808617848833\",\"fixtureCode\":\"qwertyu\",\"fixtureName\":\"电动扳手\",\"fixtureType\":\"1891349784564703233\",\"fixtureDesc\":null,\"borrowDept\":null,\"borrowUser\":null,\"status\":\"0\",\"assetNo\":\"123456\",\"modelNo\":null,\"specNo\":null,\"madeIn\":null,\"purchaseDate\":\"2025-02-17\",\"deployDate\":\"2025-02-17\",\"serviceLife\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 13:55:23', 47);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891410873713250306, '000000', '菜单管理', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":\"1890266675786121217\",\"menuName\":\"概览\",\"orderNum\":0,\"path\":\"dashboard\",\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"M\",\"visible\":\"0\",\"status\":\"0\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 16:54:28', 286);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891410914553188353, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1891410873344151554\",\"parentId\":\"1890266675786121217\",\"menuName\":\"概览\",\"orderNum\":0,\"path\":\"dashboard\",\"component\":\"dashboard\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 16:54:37', 25);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891411050738044930, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1891410873344151554\",\"parentId\":\"1890266675786121217\",\"menuName\":\"概览\",\"orderNum\":0,\"path\":\"dashboard\",\"component\":\"eims/fixture/dashboard\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 16:55:10', 11);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891411103158456322, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1891410873344151554\",\"parentId\":\"1890266675786121217\",\"menuName\":\"概览\",\"orderNum\":0,\"path\":\"dashboard\",\"component\":\"eims/fixture/dashboard\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixture:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-17 16:55:22', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891660505883197442, '000000', '字典类型', 1, 'org.dromara.system.controller.system.SysDictTypeController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/type', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":null,\"dictName\":\"工具借用状态\",\"dictType\":\"fixture_borrow_status\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 09:26:25', 37);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891660585663053826, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":0,\"dictLabel\":\"空闲\",\"dictValue\":\"0\",\"dictType\":\"fixture_borrow_status\",\"cssClass\":null,\"listClass\":\"green\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 09:26:44', 30);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891660664406917122, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":1,\"dictLabel\":\"借出\",\"dictValue\":\"1\",\"dictType\":\"fixture_borrow_status\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 09:27:02', 15);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891663277697331202, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1891410873344151554\",\"parentId\":\"1890266675786121217\",\"menuName\":\"概览\",\"orderNum\":0,\"path\":\"dashboard\",\"component\":\"eims/fixture/dashboard/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixture:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 09:37:25', 278);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891688164147130370, '000000', '字典类型', 2, 'org.dromara.system.controller.system.SysDictTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/type', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":\"1890265298657705985\",\"dictName\":\"工具(治具)状态\",\"dictType\":\"eims_fixture_status\",\"remark\":\"工具(治具)状态\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 11:16:19', 57);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891688301158264834, '000000', '字典类型', 2, 'org.dromara.system.controller.system.SysDictTypeController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/dict/type', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":\"1891660505694453762\",\"dictName\":\"工具借用状态\",\"dictType\":\"fixture_borrow_status\",\"remark\":\"工具(治具)表-工具是否被借用状态\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 11:16:52', 15);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891688592180047873, '000000', '字典类型', 1, 'org.dromara.system.controller.system.SysDictTypeController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/type', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictId\":null,\"dictName\":\"工具借用记录状态\",\"dictType\":\"fixture_borrow_record_status\",\"remark\":\"工具(治具)借用记录表借用记录状态\"}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 11:18:01', 12);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891688804248252418, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":0,\"dictLabel\":\"借用中\",\"dictValue\":\"0\",\"dictType\":\"fixture_borrow_record_status\",\"cssClass\":null,\"listClass\":\"primary\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 11:18:51', 30);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891688873861115905, '000000', '字典数据', 1, 'org.dromara.system.controller.system.SysDictDataController.add()', 'POST', 1, 'admin', '研发部门', '/system/dict/data', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"dictCode\":null,\"dictSort\":1,\"dictLabel\":\"已归还\",\"dictValue\":\"1\",\"dictType\":\"fixture_borrow_record_status\",\"cssClass\":null,\"listClass\":\"success\",\"isDefault\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 11:19:08', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891691302069530626, '000000', '代码生成', 6, 'org.dromara.generator.controller.GenController.importTableSave()', 'POST', 1, 'admin', '研发部门', '/tool/gen/importTable', '0:0:0:0:0:0:0:1', '内网IP', '\"eims_fixture_borrow\" \"master\"', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 11:28:47', 204);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891716165266108417, '000000', '代码生成', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:07:34\",\"params\":{\"parentMenuId\":\"1890266675786121217\",\"popupComponent\":\"drawer\"},\"tableId\":\"1891691301390053378\",\"dataName\":\"master\",\"tableName\":\"eims_fixture_borrow\",\"tableComment\":\"工具借用记录\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsFixtureBorrow\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"fixtureBorrow\",\"functionName\":\"工具借用\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:07:34\",\"columnId\":\"1891691301759152129\",\"tableId\":\"1891691301390053378\",\"columnName\":\"id\",\"columnComment\":\"\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":true,\"pk\":true,\"edit\":true,\"list\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":false,\"capJavaField\":\"Id\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:07:34\",\"columnId\":\"1891691301767540738\",\"tableId\":\"1891691301390053378\",\"columnName\":\"fixture_id\",\"columnComment\":\"借用工具id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"fixtureId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"LIKE\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":true,\"pk\":false,\"edit\":true,\"list\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":true,\"capJavaField\":\"FixtureId\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:07:34\",\"columnId\":\"1891691301767540739\",\"tableId\":\"1891691301390053378\",\"columnName\":\"borrow_dept\",\"columnComment\":\"借用部门\",\"columnType\":\"bigint\",\"javaTy', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:07:35', 33);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891716189194612738, '000000', '代码生成', 2, 'org.dromara.generator.controller.GenController.synchDb()', 'GET', 1, 'admin', '研发部门', '/tool/gen/synchDb/1891691301390053378', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:07:41', 57);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891716249458372609, '000000', '代码生成', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:07:54\",\"params\":{\"parentMenuId\":\"1890266675786121217\",\"popupComponent\":\"drawer\"},\"tableId\":\"1891691301390053378\",\"dataName\":\"master\",\"tableName\":\"eims_fixture_borrow\",\"tableComment\":\"工具借用记录\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsFixtureBorrow\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"fixtureBorrow\",\"functionName\":\"工具借用\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:07:54\",\"columnId\":\"1891691301759152129\",\"tableId\":\"1891691301390053378\",\"columnName\":\"id\",\"columnComment\":\"\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":true,\"pk\":true,\"edit\":true,\"list\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":false,\"capJavaField\":\"Id\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:07:54\",\"columnId\":\"1891691301767540738\",\"tableId\":\"1891691301390053378\",\"columnName\":\"fixture_id\",\"columnComment\":\"借用工具id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"fixtureId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"LIKE\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":true,\"pk\":false,\"edit\":true,\"list\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":true,\"capJavaField\":\"FixtureId\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:07:54\",\"columnId\":\"1891716189085560834\",\"tableId\":\"1891691301390053378\",\"columnName\":\"fixture_name\",\"columnComment\":\"借用工具名称\",\"columnType\":\"varchar\",\"ja', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:07:55', 26);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891716267300941826, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1891691301390053378\"}', '', 0, '', '2025-02-18 13:07:59', 178);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891717860138217474, '000000', '代码生成', 2, 'org.dromara.generator.controller.GenController.editSave()', 'PUT', 1, 'admin', '研发部门', '/tool/gen', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:14:18\",\"params\":{\"parentMenuId\":\"1890266675786121217\",\"popupComponent\":\"drawer\"},\"tableId\":\"1891691301390053378\",\"dataName\":\"master\",\"tableName\":\"eims_fixture_borrow\",\"tableComment\":\"工具借用记录\",\"subTableName\":null,\"subTableFkName\":null,\"className\":\"EimsFixtureBorrow\",\"tplCategory\":\"crud\",\"packageName\":\"org.dromara.eims\",\"moduleName\":\"eims\",\"businessName\":\"fixtureBorrow\",\"functionName\":\"工具借用\",\"functionAuthor\":\"zhuguifei\",\"genType\":\"0\",\"genPath\":\"/\",\"pkColumn\":null,\"columns\":[{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:14:18\",\"columnId\":\"1891691301759152129\",\"tableId\":\"1891691301390053378\",\"columnName\":\"id\",\"columnComment\":\"\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"id\",\"isPk\":\"1\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"0\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"0\",\"queryType\":\"EQ\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":1,\"required\":true,\"pk\":true,\"edit\":true,\"list\":true,\"insert\":false,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":false,\"capJavaField\":\"Id\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:14:18\",\"columnId\":\"1891691301767540738\",\"tableId\":\"1891691301390053378\",\"columnName\":\"fixture_id\",\"columnComment\":\"借用工具id\",\"columnType\":\"bigint\",\"javaType\":\"Long\",\"javaField\":\"fixtureId\",\"isPk\":\"0\",\"isIncrement\":\"1\",\"isRequired\":\"1\",\"isInsert\":\"1\",\"isEdit\":\"1\",\"isList\":\"1\",\"isQuery\":\"1\",\"queryType\":\"LIKE\",\"htmlType\":\"input\",\"dictType\":\"\",\"sort\":2,\"required\":true,\"pk\":false,\"edit\":true,\"list\":true,\"insert\":true,\"usableColumn\":false,\"superColumn\":false,\"increment\":true,\"query\":true,\"capJavaField\":\"FixtureId\"},{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":1,\"updateTime\":\"2025-02-18 13:14:18\",\"columnId\":\"1891716189085560834\",\"tableId\":\"1891691301390053378\",\"columnName\":\"fixture_name\",\"columnComment\":\"借用工具名称\",\"columnType\":\"varchar\",\"ja', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:14:19', 51);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891717872352030722, '000000', '代码生成', 8, 'org.dromara.generator.controller.GenController.batchGenCode()', 'GET', 1, 'admin', '研发部门', '/tool/gen/batchGenCode', '0:0:0:0:0:0:0:1', '内网IP', '{\"tableIdStr\":\"1891691301390053378\"}', '', 0, '', '2025-02-18 13:14:22', 81);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891725346312351745, '000000', '盘点明细', 3, 'org.dromara.eims.controller.EimsInventoryDetailController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/inventoryDetail/1887748053419290625', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:44:04', 29);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891725352909991938, '000000', '盘点明细', 3, 'org.dromara.eims.controller.EimsInventoryDetailController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/inventoryDetail/1887748053427679234', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:44:05', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891726234821128194, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1891716266575327234\",\"parentId\":\"1890266675786121217\",\"menuName\":\"工具借用\",\"orderNum\":1,\"path\":\"fixtureBorrow\",\"component\":\"eims/fixture-borrow/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixtureBorrow:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:47:36', 13);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891726284909506562, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1891410873344151554\",\"parentId\":\"1890266675786121217\",\"menuName\":\"概览\",\"orderNum\":1,\"path\":\"dashboard\",\"component\":\"eims/fixture/dashboard/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixture:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:47:48', 7);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891726305667117057, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1890265974959865858\",\"parentId\":\"1890266675786121217\",\"menuName\":\"工具台账\",\"orderNum\":2,\"path\":\"index\",\"component\":\"eims/fixture/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixture:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:47:53', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891726325636198401, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1891320717983477762\",\"parentId\":\"1890266675786121217\",\"menuName\":\"工具类型\",\"orderNum\":3,\"path\":\"fixtureType\",\"component\":\"eims/fixture-type/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixtureType:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:47:57', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891726363229745153, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1891716266575327234\",\"parentId\":\"1890266675786121217\",\"menuName\":\"工具借用\",\"orderNum\":4,\"path\":\"fixtureBorrow\",\"component\":\"eims/fixture-borrow/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixtureBorrow:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 13:48:06', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891749059003011074, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891749058814267393\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":100,\"borrowUser\":\"1889581563890200577\",\"agentUser\":\"1889581665270722561\",\"status\":\"0\",\"borrowTime\":\"2025-02-18 15:18:02\",\"planReturnTime\":\"2025-02-19 15:18:08\",\"returnTime\":\"2025-02-20 15:18:10\",\"borrowReason\":\"1212\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 15:18:17', 38);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891772105035378690, '000000', '用户管理', 1, 'org.dromara.system.controller.system.SysUserController.add()', 'POST', 1, 'admin', '研发部门', '/system/user', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":\"1891772104536256514\",\"deptId\":103,\"userName\":\"zhangsan\",\"nickName\":\"张三\",\"userType\":null,\"email\":null,\"phonenumber\":null,\"sex\":\"0\",\"status\":\"0\",\"remark\":null,\"roleIds\":null,\"postIds\":[],\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 16:49:52', 186);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891772267002621953, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891772266969067521\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":103,\"borrowUser\":\"1891772104536256514\",\"agentUser\":\"1889581724095836162\",\"status\":\"0\",\"borrowTime\":\"2025-02-18 16:50:22\",\"planReturnTime\":\"2025-02-18 16:50:26\",\"returnTime\":\"2025-02-18 16:50:28\",\"borrowReason\":\"法国会尽快\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 16:50:31', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1891772592392531969, '000000', '故障报修', 1, 'org.dromara.eims.controller.EimsRepairReqController.add()', 'POST', 1, 'admin', '研发部门', '/eims/repairReq', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1891772592350588929\",\"code\":\"BXD202502180001\",\"status\":\"0\",\"occTime\":\"2025-02-18 16:51:35\",\"reqTime\":\"2025-02-18 16:51:32\",\"reqDept\":103,\"reqUser\":\"1891772104536256514\",\"reqDesc\":\"发热管会尽快\",\"urgencyLevel\":\"1\",\"faultPicture\":null,\"reqType\":\"1\",\"equId\":\"1890217827130769409\",\"repairId\":null,\"repairDept\":null,\"repairUser\":null,\"faultType\":\"1\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-18 16:51:48', 10);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892015910257692673, '000000', '设备试产记录', 3, 'org.dromara.eims.controller.EimsEquTrialController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equTrial/1,1878311855408050177,1878695098922127361,1878715702941405185,1878716769359974402,1878716793649188865,1878716820266242049,1878716848254832642,1878716874670559233,1878716907243524098', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 08:58:40', 828);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892015928481943553, '000000', '设备试产记录', 3, 'org.dromara.eims.controller.EimsEquTrialController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equTrial/1878716944031764482,1878988619851870210', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 08:58:44', 8);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892016155842580482, '000000', '设备试产记录', 1, 'org.dromara.eims.controller.EimsEquTrialController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1892016155767083009\",\"equId\":\"1890217827130769409\",\"trialNum\":1,\"trialDate\":\"2025-02-19\",\"proGoodNum\":1,\"proGoodRate\":1,\"operatorDept\":100,\"operatorId\":\"1889581563890200577\",\"startTime\":\"08:58:58\",\"endTime\":\"08:58:59\",\"runTime\":\"08:59:04\",\"stopTime\":\"08:59:06\",\"planRunTime\":\"08:59:01\",\"debugHistory\":\"ryy\",\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 08:59:38', 20);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892021734849908738, '000000', '设备试产记录', 1, 'org.dromara.eims.controller.EimsEquTrialController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1892021734799577089\",\"equId\":\"1890217827130769409\",\"trialNum\":null,\"trialDate\":\"2025-02-19\",\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 09:21:48', 22);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892021782325235713, '000000', '【设备台账】', 2, 'org.dromara.eims.controller.EimsEquController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equ', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equId\":\"1890217827189489665\",\"equCode\":null,\"equTypeId\":0,\"assetNo\":\"GPA2002G005\",\"equName\":\"老化台\",\"modelNo\":\"/\",\"madeIn\":\"上海兰宝传感器有限公司\",\"ratedPower\":null,\"plateInfo\":null,\"purchaseDate\":\"2002-03-01\",\"status\":\"0\",\"location\":\"安徽兰宝\",\"deptUsed\":null,\"respPerson\":null,\"contactPhone\":null,\"deployDate\":null,\"trialDate\":null,\"planAcceptDate\":null,\"actualAcceptDate\":\"0009-01-01\",\"importStatus\":\"0\",\"inventoryFlag\":\"0\",\"inventoryDate\":null,\"serviceLife\":null,\"seller\":null,\"unit\":null,\"handleUser\":null,\"purchaseUser\":null,\"attachId\":null,\"profile\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 09:22:00', 16);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892021858367967233, '000000', '设备试产记录', 1, 'org.dromara.eims.controller.EimsEquTrialController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equTrial', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"trialId\":\"1892021858305052674\",\"equId\":\"1890217827189489665\",\"trialNum\":null,\"trialDate\":\"2025-02-19\",\"proGoodNum\":null,\"proGoodRate\":null,\"operatorDept\":null,\"operatorId\":null,\"startTime\":null,\"endTime\":null,\"runTime\":null,\"stopTime\":null,\"planRunTime\":null,\"debugHistory\":null,\"oee\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 09:22:18', 7);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892023859776589826, '000000', '设备状态记录', 1, 'org.dromara.eims.controller.EimsEquStatuController.add()', 'POST', 1, 'admin', '研发部门', '/eims/equStatu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equStatuId\":\"1892023859743035394\",\"equId\":\"1890217827130769409\",\"beforeChange\":\"0\",\"afterChange\":\"1\",\"changeDate\":\"2025-02-19 09:30:04\",\"changeUser\":1,\"userDept\":100,\"changeDesc\":\"df\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 09:30:15', 21);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892023891556831234, '000000', '设备状态记录', 2, 'org.dromara.eims.controller.EimsEquStatuController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/equStatu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"equStatuId\":\"1892023859743035394\",\"equId\":\"1890217827130769409\",\"beforeChange\":\"3\",\"afterChange\":\"1\",\"changeDate\":\"2025-02-19 09:30:04\",\"changeUser\":1,\"userDept\":100,\"changeDesc\":\"df\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 09:30:23', 9);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892027471445626882, '000000', '菜单管理', 2, 'org.dromara.system.controller.system.SysMenuController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":\"1891716266575327234\",\"parentId\":\"1890266675786121217\",\"menuName\":\"借用记录\",\"orderNum\":4,\"path\":\"fixtureBorrow\",\"component\":\"eims/fixture-borrow/index\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"C\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixtureBorrow:list\",\"icon\":\"#\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 09:44:36', 16);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892046376415268865, '000000', '菜单管理', 1, 'org.dromara.system.controller.system.SysMenuController.add()', 'POST', 1, 'admin', '研发部门', '/system/menu', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"menuId\":null,\"parentId\":\"1890265974959865858\",\"menuName\":\"工具借用\",\"orderNum\":6,\"path\":null,\"component\":\"\",\"queryParam\":null,\"isFrame\":\"1\",\"isCache\":\"0\",\"menuType\":\"F\",\"visible\":\"0\",\"status\":\"0\",\"perms\":\"eims:fixture:borrow\",\"icon\":null,\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 10:59:43', 24);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892046983922454529, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":2,\"dataScope\":null,\"menuCheckStrictly\":false,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1888814115854311426\",\"1889589456286871554\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1890266675786121217\",\"1891410873344151554\",\"1890265974959865858\",\"1891320717983477762\",\"1891716266575327234\",\"1890265974959865859\",\"1892046376327188482\",\"1891716266575327235\",\"1891716266575327236\",\"1891716266575327239\",\"1891716266575327238\",\"1891716266575327237\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 11:02:08', 111);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892082222724026369, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892082222648528897\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":null,\"status\":\"0\",\"borrowTime\":\"2025-02-19 13:22:04\",\"planReturnTime\":\"2025-02-19 13:22:08\",\"returnTime\":null,\"borrowReason\":\"adad\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 13:22:10', 53);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892095445904994305, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'zhouyuhua', 'XXX科技', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892095445770776577\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":100,\"borrowUser\":\"1889581563890200577\",\"agentUser\":\"1889581665270722561\",\"status\":\"0\",\"borrowTime\":\"2025-02-19 14:14:34\",\"planReturnTime\":\"2025-02-19 14:14:38\",\"returnTime\":null,\"borrowReason\":\"地方规划局\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:14:42', 37);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892099082144301058, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892099081863282689\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581665270722561\",\"status\":\"0\",\"borrowTime\":\"2025-02-19 14:29:04\",\"planReturnTime\":\"2025-02-19 14:29:07\",\"returnTime\":null,\"borrowReason\":\"sdd\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:29:09', 77);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892099406645018626, '000000', '工具借用', 2, 'org.dromara.eims.controller.EimsFixtureBorrowController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892099081863282689\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581665270722561\",\"status\":\"1\",\"borrowTime\":\"2025-02-19 14:29:04\",\"planReturnTime\":\"2025-02-19 14:29:07\",\"returnTime\":\"2025-02-19 14:30:25\",\"borrowReason\":\"sdd\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:30:27', 24);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892100078366998529, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892100078236975105\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581724095836162\",\"status\":\"0\",\"borrowTime\":\"2025-02-19 14:32:57\",\"planReturnTime\":\"2025-02-19 14:33:03\",\"returnTime\":\"2025-02-19 14:33:05\",\"borrowReason\":\"yhujk\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:33:07', 47);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892101960426590210, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892101960258818049\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581665270722561\",\"status\":\"0\",\"borrowTime\":\"2025-02-19 14:40:28\",\"planReturnTime\":\"2025-02-19 14:40:32\",\"returnTime\":\"2025-02-19 14:40:34\",\"borrowReason\":\"fghjk\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:40:36', 37);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892102167998500865, '000000', '工具借用', 2, 'org.dromara.eims.controller.EimsFixtureBorrowController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892101960258818049\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581665270722561\",\"status\":\"1\",\"borrowTime\":\"2025-02-19 14:40:28\",\"planReturnTime\":\"2025-02-19 14:40:32\",\"returnTime\":\"2025-02-19 14:40:34\",\"borrowReason\":\"fghjk\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:41:25', 13);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892103064728113154, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892103064619061250\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581724095836162\",\"status\":\"0\",\"borrowTime\":\"2025-02-19 14:44:49\",\"planReturnTime\":\"2025-02-19 14:44:57\",\"returnTime\":null,\"borrowReason\":\"fg345678\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:44:59', 25);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892103168805572610, '000000', '工具借用', 2, 'org.dromara.eims.controller.EimsFixtureBorrowController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892103064619061250\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581724095836162\",\"status\":\"1\",\"borrowTime\":\"2025-02-19 14:44:49\",\"planReturnTime\":\"2025-02-19 14:44:57\",\"returnTime\":\"2025-02-19 14:45:22\",\"borrowReason\":\"fg345678\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:45:24', 17);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892104974185009154, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'zhouyuhua', 'XXX科技', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892104974138871809\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":100,\"borrowUser\":\"1889581563890200577\",\"agentUser\":\"1889581665270722561\",\"status\":\"0\",\"borrowTime\":\"2025-02-19 14:52:26\",\"planReturnTime\":\"2025-02-19 14:52:31\",\"returnTime\":null,\"borrowReason\":\"法国会尽快\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:52:34', 13);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892105274010636290, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":2,\"dataScope\":null,\"menuCheckStrictly\":false,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1890266675786121217\",\"1888814115854311426\",\"1889589456286871554\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1890265974959865859\",\"1892046376327188482\",\"1891410873344151554\",\"1890265974959865858\",\"1891320717983477762\",\"1891716266575327234\",\"1891716266575327235\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:53:46', 54);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892105514109374465, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889561934287433729\",\"roleName\":\"线长\",\"roleKey\":\"line\",\"roleSort\":3,\"dataScope\":null,\"menuCheckStrictly\":true,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[100,\"1890265974959865858\",\"1891320717983477762\",\"1891716266575327234\",1,\"1890266675786121217\",\"1889589456286871554\",\"1875349550770728963\",\"1875349550770728964\",\"1875349550770728965\",\"1875349550770728966\",\"1875349550770728967\",\"1889865233922322434\",\"1876127568837582850\",\"1876127568837582851\",\"1876127568837582852\",\"1876127568837582853\",\"1876127568837582854\",\"1877195885923127298\",\"1877195885923127299\",\"1877195885923127300\",\"1877195885923127301\",\"1877195885923127302\",\"1879000339785752578\",\"1879000339785752579\",\"1879000339785752580\",\"1879000339785752581\",\"1879000339785752582\",\"1879762189070733314\",\"1879762189070733315\",\"1879762189070733316\",\"1879762189070733317\",\"1879762189070733318\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1876074027672731650\",\"1888814115854311426\",\"1891410873344151554\",\"1890265974959865859\",\"1891320717983477763\",\"1891716266575327235\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:54:43', 36);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892105619159912449, '000000', '用户管理', 1, 'org.dromara.system.controller.system.SysUserController.add()', 'POST', 1, 'admin', '研发部门', '/system/user', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"userId\":\"1892105619105386498\",\"deptId\":100,\"userName\":\"sunjian\",\"nickName\":\"孙健\",\"userType\":null,\"email\":null,\"phonenumber\":null,\"sex\":\"0\",\"status\":\"0\",\"remark\":null,\"roleIds\":[\"1889561357813903361\"],\"postIds\":[4],\"roleId\":null,\"excludeUserIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 14:55:08', 100);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892108239014465538, '000000', '工具借用', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892108238951550978\",\"fixtureId\":\"1891365808617848833\",\"fixtureName\":\"电动扳手\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581724095836162\",\"status\":\"0\",\"borrowTime\":\"2025-02-19 15:05:27\",\"planReturnTime\":\"2025-02-19 15:05:31\",\"returnTime\":null,\"borrowReason\":\"iufghj\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 15:05:33', 17);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892109166299680770, '000000', '借用记录', 2, 'org.dromara.eims.controller.EimsFixtureBorrowController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892108238951550978\",\"fixtureId\":\"1891365808617848833\",\"fixtureName\":\"电动扳手\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581724095836162\",\"status\":\"0\",\"borrowTime\":\"2025-02-19 15:05:27\",\"planReturnTime\":\"2025-02-19 15:05:31\",\"returnTime\":\"2025-02-19 15:09:08\",\"borrowReason\":\"iufghj\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 15:09:14', 29);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892109216522276865, '000000', '借用记录', 2, 'org.dromara.eims.controller.EimsFixtureBorrowController.edit()', 'PUT', 1, 'admin', '研发部门', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892108238951550978\",\"fixtureId\":\"1891365808617848833\",\"fixtureName\":\"电动扳手\",\"borrowDept\":103,\"borrowUser\":1,\"agentUser\":\"1889581724095836162\",\"status\":\"1\",\"borrowTime\":\"2025-02-19 15:05:27\",\"planReturnTime\":\"2025-02-19 15:05:31\",\"returnTime\":\"2025-02-19 15:09:08\",\"borrowReason\":\"iufghj\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-19 15:09:26', 52);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892450248121548802, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":2,\"dataScope\":null,\"menuCheckStrictly\":false,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1890266675786121217\",\"1888814115854311426\",\"1889589456286871554\",\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1890265974959865859\",\"1892046376327188482\",\"1891410873344151554\",\"1890265974959865858\",\"1891320717983477762\",\"1891716266575327234\",\"1891716266575327235\",1040,\"1891716266575327237\",\"1891716266575327236\"],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-20 13:44:34', 80);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892450438337429506, '000000', '借用记录', 2, 'org.dromara.eims.controller.EimsFixtureBorrowController.edit()', 'PUT', 1, 'zhouyuhua', 'XXX科技', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892104974138871809\",\"fixtureId\":\"1891360483990941697\",\"fixtureName\":\"手动扳手2\",\"borrowDept\":100,\"borrowUser\":\"1889581563890200577\",\"agentUser\":\"1889581665270722561\",\"status\":\"1\",\"borrowTime\":\"2025-02-19 14:52:26\",\"planReturnTime\":\"2025-02-19 14:52:31\",\"returnTime\":\"2025-02-20 13:45:15\",\"borrowReason\":\"法国会尽快\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-20 13:45:19', 23);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892450543618654210, '000000', '借用记录', 1, 'org.dromara.eims.controller.EimsFixtureBorrowController.add()', 'POST', 1, 'zhouyuhua', 'XXX科技', '/eims/fixBorrow', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"id\":\"1892450543547351042\",\"fixtureId\":\"1891365808617848833\",\"fixtureName\":\"电动扳手\",\"borrowDept\":100,\"borrowUser\":\"1889581563890200577\",\"agentUser\":\"1889581724095836162\",\"status\":\"0\",\"borrowTime\":\"2025-02-20 13:45:36\",\"planReturnTime\":\"2025-02-21 13:45:40\",\"returnTime\":null,\"borrowReason\":\"规划局看了看巨化股份代发给\",\"remark\":null}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-20 13:45:44', 19);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892450861341376514, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":2,\"dataScope\":null,\"menuCheckStrictly\":false,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1890266675786121217\",\"1888814115854311426\",\"1889589456286871554\",1040,\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1890265974959865859\",\"1892046376327188482\",\"1891410873344151554\",\"1890265974959865858\",\"1891320717983477762\",\"1891716266575327234\",\"1891716266575327235\",\"1891716266575327236\",\"1891716266575327237\",500,108,1],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-20 13:47:00', 25);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892451165403250690, '000000', '角色管理', 2, 'org.dromara.system.controller.system.SysRoleController.edit()', 'PUT', 1, 'admin', '研发部门', '/system/role', '0:0:0:0:0:0:0:1', '内网IP', '{\"createDept\":null,\"createBy\":null,\"createTime\":null,\"updateBy\":null,\"updateTime\":null,\"roleId\":\"1889561357813903361\",\"roleName\":\"操作工\",\"roleKey\":\"operator\",\"roleSort\":2,\"dataScope\":null,\"menuCheckStrictly\":false,\"deptCheckStrictly\":null,\"status\":\"0\",\"remark\":\"\",\"menuIds\":[\"1876074027672731650\",\"1890266675786121217\",\"1888814115854311426\",\"1889589456286871554\",500,1040,\"1875349550770728962\",\"1876127568837582849\",\"1877195885923127297\",\"1879000339785752577\",\"1879762189070733313\",\"1888837193552453634\",\"1888837193552453635\",\"1888837193552453636\",\"1888837193552453637\",\"1888837193552453638\",\"1888837193552453639\",\"1890265974959865859\",\"1892046376327188482\",\"1891410873344151554\",\"1890265974959865858\",\"1891320717983477762\",\"1891716266575327234\",\"1891716266575327235\",\"1891716266575327236\",\"1891716266575327237\",108],\"deptIds\":null,\"superAdmin\":false}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-20 13:48:13', 32);
| INSERT INTO `sys_oper_log` (`oper_id`, `tenant_id`, `title`, `business_type`, `method`, `request_method`, `operator_type`, `oper_name`, `dept_name`, `oper_url`, `oper_ip`, `oper_location`, `oper_param`, `json_result`, `status`, `error_msg`, `oper_time`, `cost_time`) VALUES (1892452282916831233, '000000', '设备状态记录', 3, 'org.dromara.eims.controller.EimsEquStatuController.remove()', 'DELETE', 1, 'admin', '研发部门', '/eims/equStatu/1879078207500865538,1879335212484472833,1879350376495665154', '0:0:0:0:0:0:0:1', '内网IP', '{}', '{\"code\":200,\"msg\":\"操作成功\",\"data\":null}', 0, '', '2025-02-20 13:52:39', 30);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_oss
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_oss`;
| CREATE TABLE `sys_oss` (
| `oss_id` bigint NOT NULL COMMENT '对象存储主键',
| `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号',
| `file_name` varchar(255) COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '文件名',
| `original_name` varchar(255) COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '原名',
| `file_suffix` varchar(10) COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '文件后缀名',
| `url` varchar(500) COLLATE utf8mb4_general_ci NOT NULL COMMENT 'URL地址',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `create_by` bigint DEFAULT NULL COMMENT '上传人',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新人',
| `service` varchar(20) COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'minio' COMMENT '服务商',
| PRIMARY KEY (`oss_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='OSS对象存储表';
|
| -- ----------------------------
| -- Records of sys_oss
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_oss_config
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_oss_config`;
| CREATE TABLE `sys_oss_config` (
| `oss_config_id` bigint NOT NULL COMMENT '主键',
| `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号',
| `config_key` varchar(20) COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '配置key',
| `access_key` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT 'accessKey',
| `secret_key` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '秘钥',
| `bucket_name` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '桶名称',
| `prefix` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '前缀',
| `endpoint` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '访问站点',
| `domain` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '自定义域名',
| `is_https` char(1) COLLATE utf8mb4_general_ci DEFAULT 'N' COMMENT '是否https(Y=是,N=否)',
| `region` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '域',
| `access_policy` char(1) COLLATE utf8mb4_general_ci NOT NULL DEFAULT '1' COMMENT '桶权限类型(0=private 1=public 2=custom)',
| `status` char(1) COLLATE utf8mb4_general_ci DEFAULT '1' COMMENT '是否默认(0=是,1=否)',
| `ext1` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '扩展字段',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
| PRIMARY KEY (`oss_config_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='对象存储配置表';
|
| -- ----------------------------
| -- Records of sys_oss_config
| -- ----------------------------
| BEGIN;
| INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', 'minio', 'ruoyi', 'ruoyi123', 'ruoyi', '', '127.0.0.1:9000', '', 'N', '', '1', '0', '', 103, 1, '2024-12-24 16:54:24', 1, '2025-02-12 13:31:16', NULL);
| INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', 'qiniu', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi', '', 's3-cn-north-1.qiniucs.com', '', 'N', '', '1', '1', '', 103, 1, '2024-12-24 16:54:24', 1, '2024-12-24 16:54:24', NULL);
| INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', 'aliyun', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi', '', 'oss-cn-beijing.aliyuncs.com', '', 'N', '', '1', '1', '', 103, 1, '2024-12-24 16:54:24', 1, '2024-12-24 16:54:24', NULL);
| INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '000000', 'qcloud', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi-1250000000', '', 'cos.ap-beijing.myqcloud.com', '', 'N', 'ap-beijing', '1', '1', '', 103, 1, '2024-12-24 16:54:24', 1, '2024-12-24 16:54:24', NULL);
| INSERT INTO `sys_oss_config` (`oss_config_id`, `tenant_id`, `config_key`, `access_key`, `secret_key`, `bucket_name`, `prefix`, `endpoint`, `domain`, `is_https`, `region`, `access_policy`, `status`, `ext1`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (5, '000000', 'image', 'ruoyi', 'ruoyi123', 'ruoyi', 'image', '127.0.0.1:9000', '', 'N', '', '1', '1', '', 103, 1, '2024-12-24 16:54:24', 1, '2025-02-12 13:29:59', NULL);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_post
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_post`;
| CREATE TABLE `sys_post` (
| `post_id` bigint NOT NULL COMMENT '岗位ID',
| `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号',
| `dept_id` bigint NOT NULL COMMENT '部门id',
| `post_code` varchar(64) COLLATE utf8mb4_general_ci NOT NULL COMMENT '岗位编码',
| `post_category` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '岗位类别编码',
| `post_name` varchar(50) COLLATE utf8mb4_general_ci NOT NULL COMMENT '岗位名称',
| `post_sort` int NOT NULL COMMENT '显示顺序',
| `status` char(1) COLLATE utf8mb4_general_ci NOT NULL COMMENT '状态(0正常 1停用)',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
| PRIMARY KEY (`post_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='岗位信息表';
|
| -- ----------------------------
| -- Records of sys_post
| -- ----------------------------
| BEGIN;
| INSERT INTO `sys_post` (`post_id`, `tenant_id`, `dept_id`, `post_code`, `post_category`, `post_name`, `post_sort`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', 103, 'ceo', NULL, '董事长', 1, '0', 103, 1, '2024-12-24 16:54:24', 1, '2025-01-04 16:33:39', '');
| INSERT INTO `sys_post` (`post_id`, `tenant_id`, `dept_id`, `post_code`, `post_category`, `post_name`, `post_sort`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (2, '000000', 100, 'se', NULL, '项目经理', 2, '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_post` (`post_id`, `tenant_id`, `dept_id`, `post_code`, `post_category`, `post_name`, `post_sort`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', 100, 'hr', NULL, '人力资源', 3, '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| INSERT INTO `sys_post` (`post_id`, `tenant_id`, `dept_id`, `post_code`, `post_category`, `post_name`, `post_sort`, `status`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '000000', 100, 'user', NULL, '普通员工', 4, '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '');
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_role
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_role`;
| CREATE TABLE `sys_role` (
| `role_id` bigint NOT NULL COMMENT '角色ID',
| `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号',
| `role_name` varchar(30) COLLATE utf8mb4_general_ci NOT NULL COMMENT '角色名称',
| `role_key` varchar(100) COLLATE utf8mb4_general_ci NOT NULL COMMENT '角色权限字符串',
| `role_sort` int NOT NULL COMMENT '显示顺序',
| `data_scope` char(1) COLLATE utf8mb4_general_ci DEFAULT '1' COMMENT '数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)',
| `menu_check_strictly` tinyint(1) DEFAULT '1' COMMENT '菜单树选择项是否关联显示',
| `dept_check_strictly` tinyint(1) DEFAULT '1' COMMENT '部门树选择项是否关联显示',
| `status` char(1) COLLATE utf8mb4_general_ci NOT NULL COMMENT '角色状态(0正常 1停用)',
| `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
| PRIMARY KEY (`role_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='角色信息表';
|
| -- ----------------------------
| -- Records of sys_role
| -- ----------------------------
| BEGIN;
| INSERT INTO `sys_role` (`role_id`, `tenant_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', '超级管理员', 'superadmin', 1, '1', 1, 1, '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL, '超级管理员');
| INSERT INTO `sys_role` (`role_id`, `tenant_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', '本部门及以下', 'test1', 3, '4', 1, 1, '0', '2', 103, 1, '2024-12-24 16:54:24', 1, '2025-02-12 14:25:45', '');
| INSERT INTO `sys_role` (`role_id`, `tenant_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '000000', '仅本人', 'test2', 4, '5', 1, 1, '0', '2', 103, 1, '2024-12-24 16:54:24', 1, '2025-02-12 14:26:11', '');
| INSERT INTO `sys_role` (`role_id`, `tenant_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889561357813903361, '000000', '操作工', 'operator', 2, '1', 0, 1, '0', '0', 103, 1, '2025-02-12 14:25:09', 1, '2025-02-20 13:48:13', '');
| INSERT INTO `sys_role` (`role_id`, `tenant_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889561934287433729, '000000', '线长', 'line', 3, '1', 1, 1, '0', '0', 103, 1, '2025-02-12 14:27:26', 1, '2025-02-19 14:54:43', '');
| INSERT INTO `sys_role` (`role_id`, `tenant_id`, `role_name`, `role_key`, `role_sort`, `data_scope`, `menu_check_strictly`, `dept_check_strictly`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889562679283904514, '000000', '维修工程师', 'repair', 4, '1', 1, 1, '0', '0', 103, 1, '2025-02-12 14:30:24', 1, '2025-02-12 16:43:57', '');
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_role_dept
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_role_dept`;
| CREATE TABLE `sys_role_dept` (
| `role_id` bigint NOT NULL COMMENT '角色ID',
| `dept_id` bigint NOT NULL COMMENT '部门ID',
| PRIMARY KEY (`role_id`,`dept_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='角色和部门关联表';
|
| -- ----------------------------
| -- Records of sys_role_dept
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_role_menu
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_role_menu`;
| CREATE TABLE `sys_role_menu` (
| `role_id` bigint NOT NULL COMMENT '角色ID',
| `menu_id` bigint NOT NULL COMMENT '菜单ID',
| PRIMARY KEY (`role_id`,`menu_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='角色和菜单关联表';
|
| -- ----------------------------
| -- Records of sys_role_menu
| -- ----------------------------
| BEGIN;
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 108);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 500);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1040);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1875349550770728962);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1876074027672731650);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1876127568837582849);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1877195885923127297);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1879000339785752577);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1879762189070733313);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1888814115854311426);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1888837193552453634);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1888837193552453635);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1888837193552453636);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1888837193552453637);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1888837193552453638);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1888837193552453639);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1889589456286871554);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1890265974959865858);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1890265974959865859);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1890266675786121217);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1891320717983477762);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1891410873344151554);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1891716266575327234);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1891716266575327235);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1891716266575327236);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1891716266575327237);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561357813903361, 1892046376327188482);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 100);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1875349550770728962);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1875349550770728963);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1875349550770728964);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1875349550770728965);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1875349550770728966);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1875349550770728967);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1876074027672731650);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1876127568837582849);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1876127568837582850);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1876127568837582851);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1876127568837582852);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1876127568837582853);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1876127568837582854);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1877195885923127297);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1877195885923127298);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1877195885923127299);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1877195885923127300);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1877195885923127301);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1877195885923127302);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879000339785752577);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879000339785752578);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879000339785752579);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879000339785752580);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879000339785752581);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879000339785752582);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879762189070733313);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879762189070733314);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879762189070733315);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879762189070733316);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879762189070733317);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1879762189070733318);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1888814115854311426);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1888837193552453634);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1888837193552453635);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1888837193552453636);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1888837193552453637);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1888837193552453638);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1888837193552453639);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1889589456286871554);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1889865233922322434);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1890265974959865858);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1890265974959865859);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1890266675786121217);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1891320717983477762);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1891320717983477763);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1891410873344151554);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1891716266575327234);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889561934287433729, 1891716266575327235);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 100);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1888814115854311426);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1888837193552453634);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1888837193552453635);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1888837193552453636);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1888837193552453637);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1888837193552453638);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1888837193552453639);
| INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (1889562679283904514, 1889589456286871554);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_social
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_social`;
| CREATE TABLE `sys_social` (
| `id` bigint NOT NULL COMMENT '主键',
| `user_id` bigint NOT NULL COMMENT '用户ID',
| `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '租户id',
| `auth_id` varchar(255) COLLATE utf8mb4_general_ci NOT NULL COMMENT '平台+平台唯一id',
| `source` varchar(255) COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户来源',
| `open_id` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '平台编号唯一id',
| `user_name` varchar(30) COLLATE utf8mb4_general_ci NOT NULL COMMENT '登录账号',
| `nick_name` varchar(30) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '用户昵称',
| `email` varchar(255) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '用户邮箱',
| `avatar` varchar(500) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '头像地址',
| `access_token` varchar(255) COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户的授权令牌',
| `expire_in` int DEFAULT NULL COMMENT '用户的授权令牌的有效期,部分平台可能没有',
| `refresh_token` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '刷新令牌,部分平台可能没有',
| `access_code` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '平台的授权信息,部分平台可能没有',
| `union_id` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '用户的 unionid',
| `scope` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '授予的权限,部分平台可能没有',
| `token_type` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '个别平台的授权信息,部分平台可能没有',
| `id_token` varchar(2000) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'id token,部分平台可能没有',
| `mac_algorithm` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '小米平台用户的附带属性,部分平台可能没有',
| `mac_key` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '小米平台用户的附带属性,部分平台可能没有',
| `code` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '用户的授权code,部分平台可能没有',
| `oauth_token` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'Twitter平台用户的附带属性,部分平台可能没有',
| `oauth_token_secret` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'Twitter平台用户的附带属性,部分平台可能没有',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
| PRIMARY KEY (`id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='社会化关系表';
|
| -- ----------------------------
| -- Records of sys_social
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_tenant
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_tenant`;
| CREATE TABLE `sys_tenant` (
| `id` bigint NOT NULL COMMENT 'id',
| `tenant_id` varchar(20) COLLATE utf8mb4_general_ci NOT NULL COMMENT '租户编号',
| `contact_user_name` varchar(20) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '联系人',
| `contact_phone` varchar(20) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '联系电话',
| `company_name` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '企业名称',
| `license_number` varchar(30) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '统一社会信用代码',
| `address` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '地址',
| `intro` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '企业简介',
| `domain` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '域名',
| `remark` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
| `package_id` bigint DEFAULT NULL COMMENT '租户套餐编号',
| `expire_time` datetime DEFAULT NULL COMMENT '过期时间',
| `account_count` int DEFAULT '-1' COMMENT '用户数量(-1不限制)',
| `status` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '租户状态(0正常 1停用)',
| `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| PRIMARY KEY (`id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='租户表';
|
| -- ----------------------------
| -- Records of sys_tenant
| -- ----------------------------
| BEGIN;
| INSERT INTO `sys_tenant` (`id`, `tenant_id`, `contact_user_name`, `contact_phone`, `company_name`, `license_number`, `address`, `intro`, `domain`, `remark`, `package_id`, `expire_time`, `account_count`, `status`, `del_flag`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, '000000', '管理组', '15888888888', 'XXX有限公司', NULL, NULL, '多租户通用后台管理管理系统', NULL, NULL, NULL, NULL, -1, '0', '0', 103, 1, '2024-12-24 16:54:24', NULL, NULL);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_tenant_package
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_tenant_package`;
| CREATE TABLE `sys_tenant_package` (
| `package_id` bigint NOT NULL COMMENT '租户套餐id',
| `package_name` varchar(20) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '套餐名称',
| `menu_ids` varchar(3000) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '关联菜单id',
| `remark` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
| `menu_check_strictly` tinyint(1) DEFAULT '1' COMMENT '菜单树选择项是否关联显示',
| `status` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '状态(0正常 1停用)',
| `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| PRIMARY KEY (`package_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='租户套餐表';
|
| -- ----------------------------
| -- Records of sys_tenant_package
| -- ----------------------------
| BEGIN;
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_user
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_user`;
| CREATE TABLE `sys_user` (
| `user_id` bigint NOT NULL COMMENT '用户ID',
| `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号',
| `dept_id` bigint DEFAULT NULL COMMENT '部门ID',
| `user_name` varchar(30) COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户账号',
| `nick_name` varchar(30) COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户昵称',
| `user_type` varchar(10) COLLATE utf8mb4_general_ci DEFAULT 'sys_user' COMMENT '用户类型(sys_user系统用户)',
| `email` varchar(50) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '用户邮箱',
| `phonenumber` varchar(11) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '手机号码',
| `sex` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '用户性别(0男 1女 2未知)',
| `avatar` bigint DEFAULT NULL COMMENT '头像地址',
| `password` varchar(100) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '密码',
| `status` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '帐号状态(0正常 1停用)',
| `del_flag` char(1) COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
| `login_ip` varchar(128) COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '最后登录IP',
| `login_date` datetime DEFAULT NULL COMMENT '最后登录时间',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_by` bigint DEFAULT NULL COMMENT '创建者',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新者',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `remark` varchar(500) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
| PRIMARY KEY (`user_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='用户信息表';
|
| -- ----------------------------
| -- Records of sys_user
| -- ----------------------------
| BEGIN;
| INSERT INTO `sys_user` (`user_id`, `tenant_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1, '000000', 103, 'admin', '疯狂的狮子Li', 'sys_user', 'crazyLionLi@163.com', '15888888888', '1', NULL, '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', '0', '0:0:0:0:0:0:0:1', '2025-02-24 13:32:35', 103, 1, '2024-12-24 16:54:24', 1, '2025-02-24 13:32:35', '管理员');
| INSERT INTO `sys_user` (`user_id`, `tenant_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (3, '000000', 108, 'test', '本部门及以下 密码666666', 'sys_user', '', '', '1', NULL, '$2a$10$b8yUzN0C71sbz.PhNOCgJe.Tu1yWC3RNrTyjSQ8p1W0.aaUXUJ.Ne', '0', '2', '0:0:0:0:0:0:0:1', '2024-12-25 18:54:12', 103, 1, '2024-12-24 16:54:24', 1, '2025-02-12 15:46:16', NULL);
| INSERT INTO `sys_user` (`user_id`, `tenant_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (4, '000000', 102, 'test1', '仅本人 密码666666', 'sys_user', '', '', '0', NULL, '$2a$10$b8yUzN0C71sbz.PhNOCgJe.Tu1yWC3RNrTyjSQ8p1W0.aaUXUJ.Ne', '0', '2', '127.0.0.1', '2024-12-24 16:54:24', 103, 1, '2024-12-24 16:54:24', 1, '2025-02-12 15:46:11', NULL);
| INSERT INTO `sys_user` (`user_id`, `tenant_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1888782469222465537, '000000', 101, 'zhuguifei', 'zhuguifei', 'sys_user', '', '', '0', NULL, '$2a$10$w8HBoQ6jd95Ig8WbHrgRyuOiKx4guC.sNcTd//VudfvJA9.R67M8O', '0', '2', '0:0:0:0:0:0:0:1', '2025-02-10 11:00:26', 103, 1, '2025-02-10 10:50:07', 1, '2025-02-12 15:46:13', NULL);
| INSERT INTO `sys_user` (`user_id`, `tenant_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889581563890200577, '000000', 100, 'zhouyuhua', '周育华', 'sys_user', '', '', '0', NULL, '$2a$10$LI5BfXRN1zZyuq./5ESJfeghM26rxLO/GCQbAVy6g4sq7fkyHJIAK', '0', '0', '0:0:0:0:0:0:0:1', '2025-02-20 13:48:22', 103, 1, '2025-02-12 15:45:26', 1889581563890200577, '2025-02-20 13:48:22', NULL);
| INSERT INTO `sys_user` (`user_id`, `tenant_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889581665270722561, '000000', 100, 'ningcanmin', '宁灿敏', 'sys_user', '', '', '0', NULL, '$2a$10$9yPk21heyTmsVHmRnTKGCuGsVN1U9Rqyxse3gDPx06kLjMY2mBwCG', '0', '0', '0:0:0:0:0:0:0:1', '2025-02-13 08:57:27', 103, 1, '2025-02-12 15:45:50', 1889581665270722561, '2025-02-13 08:57:27', NULL);
| INSERT INTO `sys_user` (`user_id`, `tenant_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1889581724095836162, '000000', 100, 'baoshiwei', '鲍世威', 'sys_user', '', '', '0', NULL, '$2a$10$qwP/k0mZ08egastJ0zpVVuAj8p0sjw0ObKme5Vq1Wwx8sU6t5kmzu', '0', '0', '0:0:0:0:0:0:0:1', '2025-02-19 14:53:02', 103, 1, '2025-02-12 15:46:04', 1889581724095836162, '2025-02-19 14:53:02', NULL);
| INSERT INTO `sys_user` (`user_id`, `tenant_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1891772104536256514, '000000', 103, 'zhangsan', '张三', 'sys_user', '', '', '0', NULL, '$2a$10$PqB1ldmYnhI22Izg1HUx8.osnN/ARNrkrKoT9g6E2FOJ/1pBf4pwy', '0', '0', '', NULL, 103, 1, '2025-02-18 16:49:52', 1, '2025-02-18 16:49:52', NULL);
| INSERT INTO `sys_user` (`user_id`, `tenant_id`, `dept_id`, `user_name`, `nick_name`, `user_type`, `email`, `phonenumber`, `sex`, `avatar`, `password`, `status`, `del_flag`, `login_ip`, `login_date`, `create_dept`, `create_by`, `create_time`, `update_by`, `update_time`, `remark`) VALUES (1892105619105386498, '000000', 100, 'sunjian', '孙健', 'sys_user', '', '', '0', NULL, '$2a$10$Y2wA/HUUqSBs7rdmyM8j/eTUO2SnxaCeBFTSF403/jHvV2ByiXr9K', '0', '0', '0:0:0:0:0:0:0:1', '2025-02-19 14:55:22', 103, 1, '2025-02-19 14:55:08', 1892105619105386498, '2025-02-19 14:55:22', NULL);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_user_post
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_user_post`;
| CREATE TABLE `sys_user_post` (
| `user_id` bigint NOT NULL COMMENT '用户ID',
| `post_id` bigint NOT NULL COMMENT '岗位ID',
| PRIMARY KEY (`user_id`,`post_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='用户与岗位关联表';
|
| -- ----------------------------
| -- Records of sys_user_post
| -- ----------------------------
| BEGIN;
| INSERT INTO `sys_user_post` (`user_id`, `post_id`) VALUES (1, 1);
| INSERT INTO `sys_user_post` (`user_id`, `post_id`) VALUES (1892105619105386498, 4);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for sys_user_role
| -- ----------------------------
| DROP TABLE IF EXISTS `sys_user_role`;
| CREATE TABLE `sys_user_role` (
| `user_id` bigint NOT NULL COMMENT '用户ID',
| `role_id` bigint NOT NULL COMMENT '角色ID',
| PRIMARY KEY (`user_id`,`role_id`)
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='用户和角色关联表';
|
| -- ----------------------------
| -- Records of sys_user_role
| -- ----------------------------
| BEGIN;
| INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (1, 1);
| INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (1889581563890200577, 1889561357813903361);
| INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (1889581665270722561, 1889561934287433729);
| INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (1889581724095836162, 1889562679283904514);
| INSERT INTO `sys_user_role` (`user_id`, `role_id`) VALUES (1892105619105386498, 1889561357813903361);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for test_demo
| -- ----------------------------
| DROP TABLE IF EXISTS `test_demo`;
| CREATE TABLE `test_demo` (
| `id` bigint NOT NULL COMMENT '主键',
| `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号',
| `dept_id` bigint DEFAULT NULL COMMENT '部门id',
| `user_id` bigint DEFAULT NULL COMMENT '用户id',
| `order_num` int DEFAULT '0' COMMENT '排序号',
| `test_key` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'key键',
| `value` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '值',
| `version` int DEFAULT '0' COMMENT '版本',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `create_by` bigint DEFAULT NULL COMMENT '创建人',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新人',
| `del_flag` int DEFAULT '0' COMMENT '删除标志',
| PRIMARY KEY (`id`) USING BTREE
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='测试单表';
|
| -- ----------------------------
| -- Records of test_demo
| -- ----------------------------
| BEGIN;
| INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (1, '000000', 102, 4, 1, '测试数据权限', '测试', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (2, '000000', 102, 3, 2, '子节点1', '111', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (3, '000000', 102, 3, 3, '子节点2', '222', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (4, '000000', 108, 4, 4, '测试数据', 'demo', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (5, '000000', 108, 3, 13, '子节点11', '1111', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (6, '000000', 108, 3, 12, '子节点22', '2222', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (7, '000000', 108, 3, 11, '子节点33', '3333', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (8, '000000', 108, 3, 10, '子节点44', '4444', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (9, '000000', 108, 3, 9, '子节点55', '5555', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (10, '000000', 108, 3, 8, '子节点66', '6666', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (11, '000000', 108, 3, 7, '子节点77', '7777', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (12, '000000', 108, 3, 6, '子节点88', '8888', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_demo` (`id`, `tenant_id`, `dept_id`, `user_id`, `order_num`, `test_key`, `value`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (13, '000000', 108, 3, 5, '子节点99', '9999', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| COMMIT;
|
| -- ----------------------------
| -- Table structure for test_tree
| -- ----------------------------
| DROP TABLE IF EXISTS `test_tree`;
| CREATE TABLE `test_tree` (
| `id` bigint NOT NULL COMMENT '主键',
| `tenant_id` varchar(20) COLLATE utf8mb4_general_ci DEFAULT '000000' COMMENT '租户编号',
| `parent_id` bigint DEFAULT '0' COMMENT '父id',
| `dept_id` bigint DEFAULT NULL COMMENT '部门id',
| `user_id` bigint DEFAULT NULL COMMENT '用户id',
| `tree_name` varchar(255) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '值',
| `version` int DEFAULT '0' COMMENT '版本',
| `create_dept` bigint DEFAULT NULL COMMENT '创建部门',
| `create_time` datetime DEFAULT NULL COMMENT '创建时间',
| `create_by` bigint DEFAULT NULL COMMENT '创建人',
| `update_time` datetime DEFAULT NULL COMMENT '更新时间',
| `update_by` bigint DEFAULT NULL COMMENT '更新人',
| `del_flag` int DEFAULT '0' COMMENT '删除标志',
| PRIMARY KEY (`id`) USING BTREE
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='测试树表';
|
| -- ----------------------------
| -- Records of test_tree
| -- ----------------------------
| BEGIN;
| INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (1, '000000', 0, 102, 4, '测试数据权限', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (2, '000000', 1, 102, 3, '子节点1', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (3, '000000', 2, 102, 3, '子节点2', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (4, '000000', 0, 108, 4, '测试树1', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (5, '000000', 4, 108, 3, '子节点11', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (6, '000000', 4, 108, 3, '子节点22', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (7, '000000', 4, 108, 3, '子节点33', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (8, '000000', 5, 108, 3, '子节点44', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (9, '000000', 6, 108, 3, '子节点55', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (10, '000000', 7, 108, 3, '子节点66', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (11, '000000', 7, 108, 3, '子节点77', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (12, '000000', 10, 108, 3, '子节点88', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| INSERT INTO `test_tree` (`id`, `tenant_id`, `parent_id`, `dept_id`, `user_id`, `tree_name`, `version`, `create_dept`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`) VALUES (13, '000000', 10, 108, 3, '子节点99', 0, 103, '2024-12-24 16:54:24', 1, NULL, NULL, 0);
| COMMIT;
|
| SET FOREIGN_KEY_CHECKS = 1;
|
|