package com.sooka.mapper; import com.baomidou.dynamic.datasource.annotation.DS; import com.sooka.model.bo.TgjjDbxx; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** * 【请填写功能名称】Mapper接口 * * @author lei * @date 2021-11-15 */ @Mapper @DS("db_gjj_s") public interface TgjjDbxxMapper2 { /** * 查询【请填写功能名称】 * * @param ID 【请填写功能名称】ID * @return 【请填写功能名称】 */ public TgjjDbxx selectTgjjDbxxById(Long ID); /** * 查询【请填写功能名称】列表 * * @param tgjjDbxx 【请填写功能名称】 * @return 【请填写功能名称】集合 */ public List selectTgjjDbxxList(TgjjDbxx tgjjDbxx); /** * 新增【请填写功能名称】 * * @param tgjjDbxx 【请填写功能名称】 * @return 结果 */ public int insertTgjjDbxx(TgjjDbxx tgjjDbxx); /** * 修改【请填写功能名称】 * * @param tgjjDbxx 【请填写功能名称】 * @return 结果 */ public int updateTgjjDbxx(TgjjDbxx tgjjDbxx); /** * 删除【请填写功能名称】 * * @param ID 【请填写功能名称】ID * @return 结果 */ public int deleteTgjjDbxxById(Long ID); /** * 批量删除【请填写功能名称】 * * @param IDs 需要删除的数据ID * @return 结果 */ public int deleteTgjjDbxxByIds(String[] IDs); }