| | |
| | | package com.jcdm.main.da.paramCollection.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.jcdm.main.da.paramCollection.domain.DaParamCollection; |
| | | |
| | | import java.util.List; |
| | |
| | | * @author yyt |
| | | * @date 2023-12-13 |
| | | */ |
| | | public interface IDaParamCollectionService |
| | | public interface IDaParamCollectionService extends IService<DaParamCollection> |
| | | { |
| | | /** |
| | | * 查询设备产品过程参数采集 |
| | |
| | | public int deleteDaParamCollectionById(Long id); |
| | | |
| | | void addBasicParameters(DaParamCollection daParamCollection); |
| | | |
| | | void addTighteningParameters(DaParamCollection daParamCollection); |
| | | |
| | | void saveCampaignTimeParameters(DaParamCollection daParamCollection); |
| | | |
| | | void saveBeachDaParamCollection(List<DaParamCollection> list); |
| | | |
| | | } |