package com.jcdm.main.da.tileMatchCollection.mapper; import java.util.List; import com.jcdm.main.da.tileMatchCollection.domain.DaTileMatchCollection; /** * 条码采集Mapper接口 * * @author yyt * @date 2024-06-06 */ public interface DaTileMatchCollectionMapper { /** * 查询条码采集 * * @param id 条码采集主键 * @return 条码采集 */ public DaTileMatchCollection selectDaTileMatchCollectionById(Long id); /** * 查询条码采集列表 * * @param daTileMatchCollection 条码采集 * @return 条码采集集合 */ public List selectDaTileMatchCollectionList(DaTileMatchCollection daTileMatchCollection); /** * 新增条码采集 * * @param daTileMatchCollection 条码采集 * @return 结果 */ public int insertDaTileMatchCollection(DaTileMatchCollection daTileMatchCollection); /** * 修改条码采集 * * @param daTileMatchCollection 条码采集 * @return 结果 */ public int updateDaTileMatchCollection(DaTileMatchCollection daTileMatchCollection); /** * 删除条码采集 * * @param id 条码采集主键 * @return 结果 */ public int deleteDaTileMatchCollectionById(Long id); /** * 批量删除条码采集 * * @param ids 需要删除的数据主键集合 * @return 结果 */ public int deleteDaTileMatchCollectionByIds(Long[] ids); }