package com.jcdm.main.da.passingStationCollection.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.jcdm.main.da.passingStationCollection.domain.DaPassingStationCollection;
|
|
import java.util.List;
|
|
/**
|
* 产品过站采集Mapper接口
|
*
|
* @author yyt
|
* @date 2023-12-12
|
*/
|
public interface DaPassingStationCollectionMapper extends BaseMapper<DaPassingStationCollection>
|
{
|
/**
|
* 查询产品过站采集
|
*
|
* @param id 产品过站采集主键
|
* @return 产品过站采集
|
*/
|
public DaPassingStationCollection selectDaPassingStationCollectionById(Long id);
|
|
/**
|
* 查询产品过站采集列表
|
*
|
* @param daPassingStationCollection 产品过站采集
|
* @return 产品过站采集集合
|
*/
|
public List<DaPassingStationCollection> selectDaPassingStationCollectionList(DaPassingStationCollection daPassingStationCollection);
|
|
/**
|
* 新增产品过站采集
|
*
|
* @param daPassingStationCollection 产品过站采集
|
* @return 结果
|
*/
|
public int insertDaPassingStationCollection(DaPassingStationCollection daPassingStationCollection);
|
|
/**
|
* 修改产品过站采集
|
*
|
* @param daPassingStationCollection 产品过站采集
|
* @return 结果
|
*/
|
public int updateDaPassingStationCollection(DaPassingStationCollection daPassingStationCollection);
|
|
/**
|
* 删除产品过站采集
|
*
|
* @param id 产品过站采集主键
|
* @return 结果
|
*/
|
public int deleteDaPassingStationCollectionById(Long id);
|
|
/**
|
* 批量删除产品过站采集
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteDaPassingStationCollectionByIds(Long[] ids);
|
|
int updateDaPassingStationCollectionBySfcCodeAndLocationCode(DaPassingStationCollection daPassingStationCollection);
|
}
|