| | |
| | | package com.billion.main.da.service; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.billion.main.da.domain.DaParamCollection; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 参数采集Service接口 |
| | |
| | | * @author Billion-Yi |
| | | * @date 2024-11-20 |
| | | */ |
| | | public interface IDaParamCollectionService extends IService<DaParamCollection> |
| | | public interface IDaParamCollectionService |
| | | { |
| | | /** |
| | | * 查询参数采集 |
| | |
| | | * @return 结果 |
| | | */ |
| | | public int deleteDaParamCollectionById(Long id); |
| | | /** |
| | | * 使用sqlSessionFactory实现批量插入数据 |
| | | * |
| | | * @param list 设备产品过程参数采集主键 |
| | | * @return 结果 |
| | | */ |
| | | void saveBeachDaParamCollection(List<DaParamCollection> list); |
| | | } |