德木自动化MES系统SDK初始版本

This commit is contained in:
ykxiao
2023-09-07 14:18:40 +08:00
commit a7fe8503fd
11 changed files with 344 additions and 0 deletions

25
README.md Normal file
View File

@ -0,0 +1,25 @@
# 德木自动化项目开放接口SDK
# 介绍
用于德木自动化对外开放接口数据交互
# 要求
- php版本>=7.0
# 安装
```php
composer require ykxiao/dmmes
```
# 使用
```php
$secretKey = 'gFBfirGATxafTeq74RAngaL74Ksdxhuy';
$w = new Order($secretKey);
// 获取工单数据
$response = $w->getProductOrder('SN5436745676543');
```