package com.jcdm.main.sc.stationConf.mapper;
|
|
import java.util.List;
|
import com.jcdm.main.sc.stationConf.domain.ScStationConf;
|
|
/**
|
* 工位终端配置Mapper接口
|
*
|
* @author Yi
|
* @date 2024-01-06
|
*/
|
public interface ScStationConfMapper
|
{
|
/**
|
* 查询工位终端配置
|
*
|
* @param id 工位终端配置主键
|
* @return 工位终端配置
|
*/
|
public ScStationConf selectScStationConfById(Long id);
|
|
/**
|
* 查询工位终端配置列表
|
*
|
* @param scStationConf 工位终端配置
|
* @return 工位终端配置集合
|
*/
|
public List<ScStationConf> selectScStationConfList(ScStationConf scStationConf);
|
|
/**
|
* 新增工位终端配置
|
*
|
* @param scStationConf 工位终端配置
|
* @return 结果
|
*/
|
public int insertScStationConf(ScStationConf scStationConf);
|
|
/**
|
* 修改工位终端配置
|
*
|
* @param scStationConf 工位终端配置
|
* @return 结果
|
*/
|
public int updateScStationConf(ScStationConf scStationConf);
|
|
/**
|
* 删除工位终端配置
|
*
|
* @param id 工位终端配置主键
|
* @return 结果
|
*/
|
public int deleteScStationConfById(Long id);
|
|
/**
|
* 批量删除工位终端配置
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteScStationConfByIds(Long[] ids);
|
}
|