package com.billion.main.da.mapper;
|
|
import java.util.List;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.billion.main.da.domain.DaMaterialCollection;
|
|
/**
|
* 物料采集Mapper接口
|
*
|
* @author Billion-Yi
|
* @date 2024-11-22
|
*/
|
public interface DaMaterialCollectionMapper extends BaseMapper<DaMaterialCollection>
|
{
|
/**
|
* 查询物料采集
|
*
|
* @param id 物料采集主键
|
* @return 物料采集
|
*/
|
public DaMaterialCollection selectDaMaterialCollectionById(Long id);
|
|
/**
|
* 查询物料采集列表
|
*
|
* @param daMaterialCollection 物料采集
|
* @return 物料采集集合
|
*/
|
public List<DaMaterialCollection> selectDaMaterialCollectionList(DaMaterialCollection daMaterialCollection);
|
|
/**
|
* 新增物料采集
|
*
|
* @param daMaterialCollection 物料采集
|
* @return 结果
|
*/
|
public int insertDaMaterialCollection(DaMaterialCollection daMaterialCollection);
|
|
/**
|
* 修改物料采集
|
*
|
* @param daMaterialCollection 物料采集
|
* @return 结果
|
*/
|
public int updateDaMaterialCollection(DaMaterialCollection daMaterialCollection);
|
|
/**
|
* 删除物料采集
|
*
|
* @param id 物料采集主键
|
* @return 结果
|
*/
|
public int deleteDaMaterialCollectionById(Long id);
|
|
/**
|
* 批量删除物料采集
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteDaMaterialCollectionByIds(Long[] ids);
|
}
|