package com.jcdm.main.da.passingStationCollection.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.jcdm.main.da.passingStationCollection.domain.DaPassingStationCollection;
|
|
import java.util.List;
|
|
/**
|
* 产品过站采集Service接口
|
*
|
* @author yyt
|
* @date 2023-12-12
|
*/
|
public interface IDaPassingStationCollectionService extends IService<DaPassingStationCollection>
|
{
|
/**
|
* 查询产品过站采集
|
*
|
* @param id 产品过站采集主键
|
* @return 产品过站采集
|
*/
|
public DaPassingStationCollection selectDaPassingStationCollectionById(Long id);
|
|
/**
|
* 查询产品过站采集列表
|
*
|
* @param daPassingStationCollection 产品过站采集
|
* @return 产品过站采集集合
|
*/
|
public List<DaPassingStationCollection> selectDaPassingStationCollectionList(DaPassingStationCollection daPassingStationCollection);
|
|
|
// /**
|
// * 获取首页单日累计量产数据
|
// * @param fieldName bs
|
// * @return list
|
// */
|
// public Integer getProduceNumToday(String fieldName);
|
|
/**
|
* 新增产品过站采集
|
*
|
* @param daPassingStationCollection 产品过站采集
|
* @return 结果
|
*/
|
public int insertDaPassingStationCollection(DaPassingStationCollection daPassingStationCollection);
|
|
/**
|
* 修改产品过站采集
|
*
|
* @param daPassingStationCollection 产品过站采集
|
* @return 结果
|
*/
|
public int updateDaPassingStationCollection(DaPassingStationCollection daPassingStationCollection);
|
|
public int updateDaPassingStationCollectionBySfcCodeAndLocationCode(DaPassingStationCollection daPassingStationCollection);
|
|
|
/**
|
* 批量删除产品过站采集
|
*
|
* @param ids 需要删除的产品过站采集主键集合
|
* @return 结果
|
*/
|
public int deleteDaPassingStationCollectionByIds(Long[] ids);
|
|
/**
|
* 删除产品过站采集信息
|
*
|
* @param id 产品过站采集主键
|
* @return 结果
|
*/
|
public int deleteDaPassingStationCollectionById(Long id);
|
|
void insertRepairRecordByIds(DaPassingStationCollection daPassingStationCollection);
|
|
int jrmAddPassingStationCollection(DaPassingStationCollection daPassingStationCollection);
|
|
void saveBeachDaPassingStationCollection(List<DaPassingStationCollection> list);
|
|
void insertBatch(List<DaPassingStationCollection> confList);
|
}
|