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