开启辅助访问 切换到宽版

精易论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

用微信号发送消息登录论坛

新人指南 邀请好友注册 - 我关注人的新帖 教你赚取精币 - 每日签到


求职/招聘- 论坛接单- 开发者大厅

论坛版规 总版规 - 建议/投诉 - 应聘版主 - 精华帖总集 积分说明 - 禁言标准 - 有奖举报

查看: 307|回复: 10
打印 上一主题 下一主题
收起左侧

[已解决] 怎么调用外部DLL里的命令呢????

 关闭 [复制链接]
结帖率:94% (82/87)
跳转到指定楼层
楼主
发表于 5 天前 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式   安徽省六安市
100精币
POSDLL.rar (27.82 KB, 下载次数: 6) 佳博热敏标签打印机编程手册 v1.0.6.rar (708.15 KB, 下载次数: 6)


这个是佳博的打印机DLL,我想调用里面GAP的命令来设置打印机每次打印的间距,有没大佬知道怎么调用啊,帮忙写个列子,谢谢了

最佳答案

查看完整内容

刚才回复字数超了要审核,现在写一个简短的 看了一下这个DLL的导出函数明显不是手册里面的内容,如果要用这个DLL应该也是可以的,我用易语言测试了几个可以运行,但是没有手册只能猜着写 1. 行间距调整 函数名: POS_SetLineSpacing Ordinal: 38 (0x25) RVA: 00007420 功能: 设置行间距(通常以点或毫米为单位)。 用途:调整打印行之间的间距(例如,增加或减少行高)。 参数可能包括行间距值(如 0 表示默认值,n 表示点或毫米) ...

回答提醒:如果本帖被关闭无法回复,您有更好的答案帮助楼主解决,请发表至 源码区 可获得加分喔。
友情提醒:本版被采纳的主题可在 申请荣誉值 页面申请荣誉值,获得 1点 荣誉值,荣誉值可兑换荣誉会员、终身vip用户组。
快捷通道:申请荣誉值无答案申请取消悬赏投诉有答案未采纳为最佳

签到天数: 10 天

沙发
发表于 5 天前 | 只看该作者   新疆维吾尔自治区*
刚才回复字数超了要审核,现在写一个简短的
看了一下这个DLL的导出函数明显不是手册里面的内容,如果要用这个DLL应该也是可以的,我用易语言测试了几个可以运行,但是没有手册只能猜着写

1. 行间距调整
函数名: POS_SetLineSpacing
Ordinal: 38 (0x25)
RVA: 00007420
功能: 设置行间距(通常以点或毫米为单位)。
用途:调整打印行之间的间距(例如,增加或减少行高)。
参数可能包括行间距值(如 0 表示默认值,n 表示点或毫米)。

2. 横向间距调整
函数名: POS_SetRightSpacing
Ordinal: 41 (0x29)
RVA: 00007440
功能: 设置右侧间距或横向间距(字符间距)。
用途:调整字符之间的横向间距(如紧凑或宽松排版)。

3. 移动单位设置
函数名: POS_SetMotionUnit
Ordinal: 40 (0x28)
RVA: 000073E0
功能: 设置打印头的移动单位(可能与步进距离相关)。
用途:间接影响打印内容的横向或纵向间距。

然后,调用前可能需要先初始化,大概写一下逻辑,理解就行

//初始化热敏打印机
POS_Open();          // 打开打印机连接
POS_StartDoc();      // 开始文档
//设置新打印参数
POS_SetLineSpacing(30);  // 假设参数为点数
POS_SetRightSpacing(10); // 假设参数为横向步进值
POS_PL_TextOut("示例文本"); // 输出文本
POS_FeedLine();            // 换行
//恢复原本打印参数
POS_SetLineSpacing(0);    // 恢复默认行间距
POS_SetRightSpacing(0);   // 恢复默认横向间距
//关闭打印机
POS_EndDoc();            // 结束文档
POS_Close();             // 关闭连接
回复

使用道具 举报

结帖率:94% (82/87)

签到天数: 8 天

板凳
 楼主| 发表于 5 天前 | 只看该作者   安徽省六安市
这个打印间距搞很久了,有大佬给解决下啊,真心感谢,在线等....
回复

使用道具 举报

结帖率:50% (1/2)

签到天数: 9 天

地板
发表于 5 天前 高大上手机用户 | 只看该作者   福建省福州市
你先问下是不是32位的

点评

不是32位的已经可以结束了,   福建省福州市  发表于 5 天前
回复

使用道具 举报

结帖率:100% (17/17)

签到天数: 9 天

地下
发表于 5 天前 | 只看该作者   广东省深圳市
额,按道理打印机没有设置软件或者测试的demo的吗。一般打印机的软件设置好保存后,用户只需要使用简单的打印功能就行了吧。还要单独写个软件设置...
回复

使用道具 举报

签到天数: 7 天

6
发表于 4 天前 | 只看该作者   江西省南昌市
我看了一下,POSDLL.dll中并不存在编程手册中的函数,可能是更为底层的dll,而编程手册中的函数可能是厂家封装好的函数,你可以找厂家要一个封装好的dll,或者自己了解一下POSDLL.dll自己手搓一个类似的功能。
回复

使用道具 举报

签到天数: 10 天

7
发表于 4 天前 | 只看该作者   新疆维吾尔自治区*
这个手册应该不是描述关于这个DLL的,先用工具看一下这个DLL的导出函数
  Section contains the following exports for POSDLL.dll

    00000000 characteristics
    45EE6309 time date stamp Wed Mar  7 15:00:25 2007
        0.00 version
           1 ordinal base
         149 number of functions
         149 number of names

    ordinal hint RVA      name

          1    0 00007340 POS_BeginSaveFile
          2    1 00007330 POS_Close
          3    2 000075A0 POS_CutPaper
          4    3 00007060 POS_EndDoc
          5    4 00007360 POS_EndSaveFile
          6    5 00007550 POS_FeedLine
          7    6 00007560 POS_FeedLines
          8    7 000075C0 POS_FlipPaper
          9    8 000076D0 POS_GetASB
         10    9 00007E20 POS_GetVersionInfo
         11    A 00007580 POS_KickOutDrawer
         12    B 00007650 POS_NETQueryStatus
         13    C 000070B0 POS_Open
         14    D 00007D10 POS_PL_Clear
         15    E 00007BD0 POS_PL_DownloadAndPrintBmp
         16    F 00007D20 POS_PL_Print
         17   10 00007C10 POS_PL_PrintBmpInRAM
         18   11 00007A20 POS_PL_SetArea
         19   12 00007C50 POS_PL_SetBarcode
         20   13 00007A50 POS_PL_TextOut
         21   14 00007450 POS_PreDownloadBmpToRAM
         22   15 000074A0 POS_PreDownloadBmpsToFlash
         23   16 000075D0 POS_QueryStatus
         24   17 00007690 POS_QueryStatusPrinter
         25   18 00007610 POS_RTQueryStatus
         26   19 00007D50 POS_ReadFile
         27   1A 00007570 POS_RecedePaper
         28   1B 00007370 POS_Reset
         29   1C 000078C0 POS_S_DownloadAndPrintBmp
         30   1D 00007950 POS_S_PrintBmpInFlash
         31   1E 00007920 POS_S_PrintBmpInRAM
         32   1F 00007730 POS_S_SetAreaWidth
         33   20 00007980 POS_S_SetBarcode
         34   21 00007740 POS_S_TextOut
         35   22 000076C0 POS_SetASB
         36   23 00007400 POS_SetCharSetAndCodePage
         37   24 00007DF0 POS_SetHandle
         38   25 00007420 POS_SetLineSpacing
         39   26 00007380 POS_SetMode
         40   27 000073E0 POS_SetMotionUnit
         41   28 00007440 POS_SetRightSpacing
         42   29 00007000 POS_StartDoc
         43   2A 00007D30 POS_WriteFile
         44   2B 00006B30 PosAdjustLable
         45   2C 00005F10 PosBarcodePrint
         46   2D 00005D90 PosBarcodeSelectType
         47   2E 00005C70 PosBarcodeSetHeight
         48   2F 00005CD0 PosBarcodeSetHriFontType
         49   30 00005D30 PosBarcodeSetHriPosition
         50   31 00005E00 PosBarcodeSetPDF417
         51   32 00005C10 PosBarcodeSetWidthX
         52   33 000026C0 PosBeginMacroDefinition
         53   34 000023C0 PosBeginSaveFile
         54   35 00004E90 PosBmpDownloadAndPrint
         55   36 00004820 PosBmpDownloadAndPrintBy24DD
         56   37 00004180 PosBmpDownloadAndPrintBy24SD
         57   38 00003B80 PosBmpDownloadAndPrintBy8DD
         58   39 00003580 PosBmpDownloadAndPrintBy8SD
         59   3A 00004F80 PosBmpDownloadAndPrintByLines
         60   3B 00004F00 PosBmpEnter
         61   3C 00005260 PosBmpExit
         62   3D 00005820 PosBmpPreDownloadToFlash
         63   3E 00005580 PosBmpPreDownloadToRAM
         64   3F 000052A0 PosBmpPrintByRasterMode
         65   40 00005BA0 PosBmpPrintInFlash
         66   41 00005B40 PosBmpPrintInRAM
         67   42 00004F40 PosBmpPrintOneLine
         68   43 00005AE0 PosBmpSpecifyIDInRAM
         69   44 00002340 PosClose
         70   45 00006210 PosEnableASB
         71   46 00002600 PosEnableButton
         72   47 00002660 PosEnableStopPrintingOnPaperEnd
         73   48 000026C0 PosEndMacroDefinition
         74   49 00002400 PosEndSaveFile
         75   4A 00006DB0 PosEnterLabelMode
         76   4B 00002700 PosExecuteMacro
         77   4C 00006E10 PosExitLabelMode
         78   4D 00003530 PosFontCancelUDC
         79   4E 00003490 PosFontDefineKanjiUDC
         80   4F 000033B0 PosFontDefineUDC
         81   50 000032F0 PosFontEanbleSmooth
         82   51 00003290 PosFontEnableBold
         83   52 00003230 PosFontEnableKanjiQuadruple
         84   53 000030F0 PosFontEnableReverse
         85   54 00003350 PosFontEnableUDC
         86   55 00003000 PosFontEnterKanjiMode
         87   56 00003040 PosFontExitKanjiMode
         88   57 00003080 PosFontMagnify
         89   58 00002E00 PosFontSelectCharSet
         90   59 00002E60 PosFontSelectCodePage
         91   5A 00002F20 PosFontSelectFamily
         92   5B 00002EC0 PosFontSelectType
         93   5C 00002FA0 PosFontSetKanjiPrintMode
         94   5D 000031D0 PosFontSetKanjiUnderline
         95   5E 00002F50 PosFontSetStyle
         96   5F 00003150 PosFontSetUnderline
         97   60 00002300 PosInit
         98   61 00006FA0 PosKickOutDrawer
         99   62 00006180 PosLptQueryPaperStatus
        100   63 00001E20 PosOpen
        101   64 00002980 PosPaperFeed
        102   65 00002870 PosPaperFeedAndCut
        103   66 00002900 PosPaperFlip
        104   67 00002940 PosPaperPartialCut
        105   68 000029E0 PosPaperRecede
        106   69 00002810 PosPaperSetTearMode
        107   6A 00006AF0 PosPnLClearBuffer
        108   6B 00006BB0 PosPnLEnterSTDMode
        109   6C 00006800 PosPnLSetArea
        110   6D 00006950 PosPnLSetDirection
        111   6E 00006AB0 PosPnLSetVerticalPosition
        112   6F 000069B0 PosPnLSetVerticalPositionA
        113   70 00006A30 PosPnLSetVerticalPositionR
        114   71 00006CF0 PosPrintAndFeedDots
        115   72 00006D50 PosPrintAndFeedLines
        116   73 00006C70 PosPrintCR
        117   74 00006CB0 PosPrintESCFF
        118   75 00006C30 PosPrintFF
        119   76 00006BF0 PosPrintLF
        120   77 00006270 PosQueryPrinterInfo
        121   78 000063A0 PosQueryStatus
        122   79 00006300 PosQueryStatusAsSpecified
        123   7A 00006410 PosRTQueryStatus
        124   7B 000064C0 PosRTRequest
        125   7C 000060D0 PosReadDataFromCom
        126   7D 00006F40 PosReadDataFromEEPROM
        127   7E 000066E0 PosSTDEnableAntiClockwiseRotation
        128   7F 00006760 PosSTDEnableClockwiseRotation
        129   80 00006680 PosSTDEnableUpsidedown
        130   81 000067C0 PosSTDEnterPageMode
        131   82 00006620 PosSTDSetAlignMode
        132   83 00006520 PosSTDSetLeftMargin
        133   84 000065A0 PosSTDSetWidth
        134   85 00006E70 PosSelectPaperType
        135   86 00002290 PosSetComBaudrate
        136   87 000025A0 PosSetDarkness
        137   88 00002AA0 PosSetDefaultLinespace
        138   89 00002CF0 PosSetHorizontalPosition
        139   8A 00002BF0 PosSetHorizontalPositionA
        140   8B 00002C70 PosSetHorizontalPositionR
        141   8C 00002B70 PosSetKanjiLRSpacing
        142   8D 00002A40 PosSetLinespace
        143   8E 00002790 PosSetMotionUnit
        144   8F 00002AE0 PosSetPitch
        145   90 00002540 PosSetSpeed
        146   91 00002D40 PosSetTabSpace
        147   92 00002DC0 PosTab
        148   93 00002420 PosWriteData
        149   94 00006ED0 PosWriteDataToEEPROM

刚才用易语言测试了几个函数是可以运行,也有返回,建议再找一下相关手册,我这边测试不了,只能猜测

‌1. 行间距调整‌
‌函数名‌: ‌POS_SetLineSpacing‌
‌Ordinal‌: 38 (0x25)
‌RVA‌: 00007420
‌功能‌: 设置行间距(通常以点或毫米为单位)。
‌用途‌:调整打印行之间的间距(例如,增加或减少行高)。
参数可能包括行间距值(如 0 表示默认值,n 表示点或毫米)。

‌2. 横向间距调整‌
‌函数名‌: ‌POS_SetRightSpacing‌
‌Ordinal‌: 41 (0x29)
‌RVA‌: 00007440
‌功能‌: 设置右侧间距或横向间距(字符间距)。
‌用途‌:调整字符之间的横向间距(如紧凑或宽松排版)。

‌3. 移动单位设置‌
‌函数名‌: ‌POS_SetMotionUnit‌
‌Ordinal‌: 40 (0x28)
‌RVA‌: 000073E0
‌功能‌: 设置打印头的移动单位(可能与步进距离相关)。
‌用途‌:间接影响打印内容的横向或纵向间距。


然后,调用前可能需要先初始化,大概写一下逻辑,理解就行

//初始化热敏打印机
POS_Open();          // 打开打印机连接
POS_StartDoc();      // 开始文档

//设置新打印参数
POS_SetLineSpacing(30);  // 假设参数为点数
POS_SetRightSpacing(10); // 假设参数为横向步进值
POS_PL_TextOut("示例文本"); // 输出文本
POS_FeedLine();            // 换行

//恢复原本打印参数
POS_SetLineSpacing(0);    // 恢复默认行间距
POS_SetRightSpacing(0);   // 恢复默认横向间距

//关闭打印机
POS_EndDoc();            // 结束文档
POS_Close();             // 关闭连接


回复

使用道具 举报

签到天数: 10 天

8
发表于 4 天前 | 只看该作者   新疆维吾尔自治区*
这个DLL的导出函数
1    0 00007340 POS_BeginSaveFile
2    1 00007330 POS_Close
3    2 000075A0 POS_CutPaper
4    3 00007060 POS_EndDoc
5    4 00007360 POS_EndSaveFile
6    5 00007550 POS_FeedLine
7    6 00007560 POS_FeedLines
8    7 000075C0 POS_FlipPaper
9    8 000076D0 POS_GetASB
10    9 00007E20 POS_GetVersionInfo
11    A 00007580 POS_KickOutDrawer
12    B 00007650 POS_NETQueryStatus
13    C 000070B0 POS_Open
14    D 00007D10 POS_PL_Clear
15    E 00007BD0 POS_PL_DownloadAndPrintBmp
16    F 00007D20 POS_PL_Print
17   10 00007C10 POS_PL_PrintBmpInRAM
18   11 00007A20 POS_PL_SetArea
19   12 00007C50 POS_PL_SetBarcode
20   13 00007A50 POS_PL_TextOut
21   14 00007450 POS_PreDownloadBmpToRAM
22   15 000074A0 POS_PreDownloadBmpsToFlash
23   16 000075D0 POS_QueryStatus
24   17 00007690 POS_QueryStatusPrinter
25   18 00007610 POS_RTQueryStatus
26   19 00007D50 POS_ReadFile
27   1A 00007570 POS_RecedePaper
28   1B 00007370 POS_Reset
29   1C 000078C0 POS_S_DownloadAndPrintBmp
30   1D 00007950 POS_S_PrintBmpInFlash
31   1E 00007920 POS_S_PrintBmpInRAM
32   1F 00007730 POS_S_SetAreaWidth
33   20 00007980 POS_S_SetBarcode
34   21 00007740 POS_S_TextOut
35   22 000076C0 POS_SetASB
36   23 00007400 POS_SetCharSetAndCodePage
37   24 00007DF0 POS_SetHandle
38   25 00007420 POS_SetLineSpacing
39   26 00007380 POS_SetMode
40   27 000073E0 POS_SetMotionUnit
41   28 00007440 POS_SetRightSpacing
42   29 00007000 POS_StartDoc
43   2A 00007D30 POS_WriteFile
44   2B 00006B30 PosAdjustLable
45   2C 00005F10 PosBarcodePrint
46   2D 00005D90 PosBarcodeSelectType
47   2E 00005C70 PosBarcodeSetHeight
48   2F 00005CD0 PosBarcodeSetHriFontType
49   30 00005D30 PosBarcodeSetHriPosition
50   31 00005E00 PosBarcodeSetPDF417
51   32 00005C10 PosBarcodeSetWidthX
52   33 000026C0 PosBeginMacroDefinition
53   34 000023C0 PosBeginSaveFile
54   35 00004E90 PosBmpDownloadAndPrint
55   36 00004820 PosBmpDownloadAndPrintBy24DD
56   37 00004180 PosBmpDownloadAndPrintBy24SD
57   38 00003B80 PosBmpDownloadAndPrintBy8DD
58   39 00003580 PosBmpDownloadAndPrintBy8SD
59   3A 00004F80 PosBmpDownloadAndPrintByLines
60   3B 00004F00 PosBmpEnter
61   3C 00005260 PosBmpExit
62   3D 00005820 PosBmpPreDownloadToFlash
63   3E 00005580 PosBmpPreDownloadToRAM
64   3F 000052A0 PosBmpPrintByRasterMode
65   40 00005BA0 PosBmpPrintInFlash
66   41 00005B40 PosBmpPrintInRAM
67   42 00004F40 PosBmpPrintOneLine
68   43 00005AE0 PosBmpSpecifyIDInRAM
69   44 00002340 PosClose
70   45 00006210 PosEnableASB
71   46 00002600 PosEnableButton
72   47 00002660 PosEnableStopPrintingOnPaperEnd
73   48 000026C0 PosEndMacroDefinition
74   49 00002400 PosEndSaveFile
75   4A 00006DB0 PosEnterLabelMode
76   4B 00002700 PosExecuteMacro
77   4C 00006E10 PosExitLabelMode
78   4D 00003530 PosFontCancelUDC
79   4E 00003490 PosFontDefineKanjiUDC
80   4F 000033B0 PosFontDefineUDC
81   50 000032F0 PosFontEanbleSmooth
82   51 00003290 PosFontEnableBold
83   52 00003230 PosFontEnableKanjiQuadruple
84   53 000030F0 PosFontEnableReverse
85   54 00003350 PosFontEnableUDC
86   55 00003000 PosFontEnterKanjiMode
87   56 00003040 PosFontExitKanjiMode
88   57 00003080 PosFontMagnify
89   58 00002E00 PosFontSelectCharSet
90   59 00002E60 PosFontSelectCodePage
91   5A 00002F20 PosFontSelectFamily
92   5B 00002EC0 PosFontSelectType
93   5C 00002FA0 PosFontSetKanjiPrintMode
94   5D 000031D0 PosFontSetKanjiUnderline
95   5E 00002F50 PosFontSetStyle
96   5F 00003150 PosFontSetUnderline
97   60 00002300 PosInit
98   61 00006FA0 PosKickOutDrawer
99   62 00006180 PosLptQueryPaperStatus
100   63 00001E20 PosOpen
101   64 00002980 PosPaperFeed
102   65 00002870 PosPaperFeedAndCut
103   66 00002900 PosPaperFlip
104   67 00002940 PosPaperPartialCut
105   68 000029E0 PosPaperRecede
106   69 00002810 PosPaperSetTearMode
107   6A 00006AF0 PosPnLClearBuffer
108   6B 00006BB0 PosPnLEnterSTDMode
109   6C 00006800 PosPnLSetArea
110   6D 00006950 PosPnLSetDirection
111   6E 00006AB0 PosPnLSetVerticalPosition
112   6F 000069B0 PosPnLSetVerticalPositionA
113   70 00006A30 PosPnLSetVerticalPositionR
114   71 00006CF0 PosPrintAndFeedDots
115   72 00006D50 PosPrintAndFeedLines
116   73 00006C70 PosPrintCR
117   74 00006CB0 PosPrintESCFF
118   75 00006C30 PosPrintFF
119   76 00006BF0 PosPrintLF
120   77 00006270 PosQueryPrinterInfo
121   78 000063A0 PosQueryStatus
122   79 00006300 PosQueryStatusAsSpecified
123   7A 00006410 PosRTQueryStatus
124   7B 000064C0 PosRTRequest
125   7C 000060D0 PosReadDataFromCom
126   7D 00006F40 PosReadDataFromEEPROM
127   7E 000066E0 PosSTDEnableAntiClockwiseRotation
128   7F 00006760 PosSTDEnableClockwiseRotation
129   80 00006680 PosSTDEnableUpsidedown
130   81 000067C0 PosSTDEnterPageMode
131   82 00006620 PosSTDSetAlignMode
132   83 00006520 PosSTDSetLeftMargin
133   84 000065A0 PosSTDSetWidth
134   85 00006E70 PosSelectPaperType
135   86 00002290 PosSetComBaudrate
136   87 000025A0 PosSetDarkness
137   88 00002AA0 PosSetDefaultLinespace
138   89 00002CF0 PosSetHorizontalPosition
139   8A 00002BF0 PosSetHorizontalPositionA
140   8B 00002C70 PosSetHorizontalPositionR
141   8C 00002B70 PosSetKanjiLRSpacing
142   8D 00002A40 PosSetLinespace
143   8E 00002790 PosSetMotionUnit
144   8F 00002AE0 PosSetPitch
145   90 00002540 PosSetSpeed
146   91 00002D40 PosSetTabSpace
147   92 00002DC0 PosTab
148   93 00002420 PosWriteData
149   94 00006ED0 PosWriteDataToEEPROM
回复

使用道具 举报

结帖率:94% (82/87)

签到天数: 8 天

9
 楼主| 发表于 4 天前 | 只看该作者   安徽省六安市
TIANL 发表于 2025-5-6 03:08
这个DLL的导出函数
1    0 00007340 POS_BeginSaveFile
2    1 00007330 POS_Close

libUsbContorl.rar (19.27 KB, 下载次数: 2) 帮忙看下是不是这个dll和手册是一起的
回复

使用道具 举报

签到天数: 10 天

10
发表于 4 天前 | 只看该作者   新疆维吾尔自治区*
吴氏公子 发表于 2025-5-6 09:53
帮忙看下是不是这个dll和手册是一起的

这个DLL没有导出函数
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则 致发广告者

发布主题 收藏帖子 返回列表

sitemap| 易语言源码| 易语言教程| 易语言论坛| 易语言模块| 手机版| 广告投放| 精易论坛
拒绝任何人以任何形式在本论坛发表与中华人民共和国法律相抵触的言论,本站内容均为会员发表,并不代表精易立场!
论坛帖子内容仅用于技术交流学习和研究的目的,严禁用于非法目的,否则造成一切后果自负!如帖子内容侵害到你的权益,请联系我们!
防范网络诈骗,远离网络犯罪 违法和不良信息举报电话0663-3422125,QQ: 793400750,邮箱:[email protected]
网站简介:精易论坛成立于2009年,是一个程序设计学习交流技术论坛,隶属于揭阳市揭东区精易科技有限公司所有。
Powered by Discuz! X3.4 揭阳市揭东区精易科技有限公司 ( 粤ICP备12094385号-1) 粤公网安备 44522102000125 增值电信业务经营许可证 粤B2-20192173

快速回复 返回顶部 返回列表