package com.sooka.mapper; import com.sooka.model.bo.TgjjGrzhxx; import java.util.List; /** * 【请填写功能名称】Mapper接口 * * @author lei * @date 2021-11-15 */ public interface TgjjGrzhxxMapper { /** * 查询【请填写功能名称】 * * @param ID 【请填写功能名称】ID * @return 【请填写功能名称】 */ public TgjjGrzhxx selectTgjjGrzhxxById(Long ID); /** * 查询【请填写功能名称】列表 * * @param tgjjGrzhxx 【请填写功能名称】 * @return 【请填写功能名称】集合 */ public List selectTgjjGrzhxxList(TgjjGrzhxx tgjjGrzhxx); /** * 新增【请填写功能名称】 * * @param tgjjGrzhxx 【请填写功能名称】 * @return 结果 */ public int insertTgjjGrzhxx(TgjjGrzhxx tgjjGrzhxx); /** * 修改【请填写功能名称】 * * @param tgjjGrzhxx 【请填写功能名称】 * @return 结果 */ public int updateTgjjGrzhxx(TgjjGrzhxx tgjjGrzhxx); /** * 删除【请填写功能名称】 * * @param ID 【请填写功能名称】ID * @return 结果 */ public int deleteTgjjGrzhxxById(Long ID); /** * 批量删除【请填写功能名称】 * * @param IDs 需要删除的数据ID * @return 结果 */ public int deleteTgjjGrzhxxByIds(String[] IDs); }