1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package org.jeecg.modules.msi.webapi.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import org.jeecg.modules.msi.webapi.entity.MsiWebapiJsonEntity;
| import org.jeecg.modules.msi.webapi.vo.MachineEquipentInfo;
|
| import java.util.List;
|
| public interface IMsiWebapiJsonService extends IService<MsiWebapiJsonEntity> {
|
|
| /**
| * 解析单条数据保存到单表
| * @param data
| * @return
| */
| boolean saveTableAutomationOne(List<MachineEquipentInfo> data);
|
| }
|
|