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;
|
|
/**
|
* 设备产品过程参数采集Service接口
|
*
|
* @author yyt
|
* @date 2023-12-13
|
*/
|
public interface IDaParamCollectionService extends IService<DaParamCollection>
|
{
|
/**
|
* 查询设备产品过程参数采集
|
*
|
* @param id 设备产品过程参数采集主键
|
* @return 设备产品过程参数采集
|
*/
|
public DaParamCollection selectDaParamCollectionById(Long id);
|
|
/**
|
* 查询设备产品过程参数采集列表
|
*
|
* @param daParamCollection 设备产品过程参数采集
|
* @return 设备产品过程参数采集集合
|
*/
|
public List<DaParamCollection> selectDaParamCollectionList(DaParamCollection daParamCollection);
|
|
/**
|
* 新增设备产品过程参数采集
|
*
|
* @param daParamCollection 设备产品过程参数采集
|
* @return 结果
|
*/
|
public int insertDaParamCollection(DaParamCollection daParamCollection);
|
|
/**
|
* 修改设备产品过程参数采集
|
*
|
* @param daParamCollection 设备产品过程参数采集
|
* @return 结果
|
*/
|
public int updateDaParamCollection(DaParamCollection daParamCollection);
|
|
/**
|
* 批量删除设备产品过程参数采集
|
*
|
* @param ids 需要删除的设备产品过程参数采集主键集合
|
* @return 结果
|
*/
|
public int deleteDaParamCollectionByIds(Long[] ids);
|
|
/**
|
* 删除设备产品过程参数采集信息
|
*
|
* @param id 设备产品过程参数采集主键
|
* @return 结果
|
*/
|
public int deleteDaParamCollectionById(Long id);
|
|
void addBasicParameters(DaParamCollection daParamCollection);
|
|
void addTighteningParameters(DaParamCollection daParamCollection);
|
|
void saveCampaignTimeParameters(DaParamCollection daParamCollection);
|
}
|