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