yangbin
2025-05-20 1cbbb341d22e3c46b15af65b6f97d738bae7ca95
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 machineInfo
     * @return
     */
    boolean saveTableAutomationOne(List<MachineEquipentInfo> data);
 
}