1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.web.pda.gltPda_wdPda.service;
|
| import com.alibaba.fastjson.JSONArray;
| import com.app.base.data.ApiResponseResult;
|
| public interface WDApiService {
|
| /**
| * 2022-05-23 用于设备数据上传
| **/
| public ApiResponseResult uploadDeviceData(String factory,String company,String prono,JSONArray pData) throws Exception;
|
| }
|
|